Increase the size slightly if we have a date, and use format_date for localization

This commit is contained in:
james 2011-03-31 19:19:27 +00:00
parent 3eb15bd24b
commit ada73125cf
2 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@
$table=array();
$table['header']=array(i18n("Timeslot"),i18n("Proj #"),i18n("Project Title"));
if($show_date)
$table['widths']=array( 2.25, 0.75, 4.00);
$table['widths']=array( 2.50, 0.75, 3.75);
else
$table['widths']=array( 1.5, 0.75, 4.75);
@ -140,7 +140,7 @@
while($r=mysql_fetch_object($q))
{
if($show_date)
$timeslot=$r->date." ";
$timeslot=format_date($r->date)." ";
else
$timeslot="";
$timeslot.=format_time($r->starttime)." - ".format_time($r->endtime);

View File

@ -110,7 +110,7 @@
$table=array();
$table['header']=array(i18n("Timeslot"),i18n("Judging Team"));
if($show_date)
$table['widths']=array( 2.25, 4.75);
$table['widths']=array( 2.50, 4.50);
else
$table['widths']=array( 1.5, 5.50);