Fix: Missing style

This commit is contained in:
Laurent Destailleur 2011-04-04 17:18:13 +00:00
parent db1d4152b4
commit 0752284753

View File

@ -1,6 +1,6 @@
<?php
/* Copyright (C) 2003-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -95,7 +95,7 @@ print '<input type="hidden" name="action" value="builddoc">';
$cmonth = GETPOST("remonth")?GETPOST("remonth"):date("n", time());
$syear = GETPOST("reyear")?GETPOST("reyear"):date("Y", time());
print '<select name="remonth">';
print '<select class="flat" name="remonth">';
for ($month = 1 ; $month < 13 ; $month++)
{
if ($month == $cmonth)
@ -108,7 +108,7 @@ for ($month = 1 ; $month < 13 ; $month++)
}
}
print "</select>";
print '<select name="reyear">';
print '<select class="flat" name="reyear">';
for ($formyear = $syear - 2; $formyear < $syear +1 ; $formyear++)
{