From 12bfc63b1ae290f7c4dd7a0ca01f007d5e0a4170 Mon Sep 17 00:00:00 2001 From: short <> Date: Tue, 14 Aug 2001 18:20:17 +0000 Subject: [PATCH] title_table_month(): month names changed to numbers, reqd by publisher --- index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.php b/index.php index 5179929..43507a5 100644 --- a/index.php +++ b/index.php @@ -19,15 +19,15 @@ function title_table_month($year,$month) { - $month_cz=array("leden","únor","bøezen","duben","kvìten","èerven","èervenec","srpen","záøí","øíjen","listoped","prosinec"); $size_width_s= 98; $size_height_s=138; $size_width =486; $size_height =688; $base=sprintf("img/eap-%04d-%02d",$year,$month+1); + $name=sprintf( "%04d/%02d",$year,$month+1); print("" ."\"$year-".$month_cz[$month]."\"
\n" - ."$year
".$month_cz[$month] + ." style=\"border:0;width:${size_width_s}px;height:${size_height_s}px\" alt=\"titulní stránka $name\" />
\n" + ."$name" ."
"); } -- 1.8.3.1