[pLog-svn] r1407 - plog/trunk/class/data

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Sat Mar 12 19:48:14 GMT 2005


Author: jondaley
Date: 2005-03-12 19:48:14 +0000 (Sat, 12 Mar 2005)
New Revision: 1407

Modified:
   plog/trunk/class/data/htmlcalendar.class.php
Log:
I guess people don't pay attention to the calendar much.  The prev/next tags were wrong

Modified: plog/trunk/class/data/htmlcalendar.class.php
===================================================================
--- plog/trunk/class/data/htmlcalendar.class.php	2005-03-12 19:47:36 UTC (rev 1406)
+++ plog/trunk/class/data/htmlcalendar.class.php	2005-03-12 19:48:14 UTC (rev 1407)
@@ -281,9 +281,9 @@
         ///* // remove this line #2
 		$s .= "<thead>\n";
         $s .= "<tr class=\"calMonthNav\">\n";
-    	$s .= "\t<th class=\"calMonthBackward\">" . (($prevMonth == "") ? "&nbsp;" : "<a href=\"$prevMonth\" title=\"$nextMonthName\">&laquo;</a>")  . "</th>\n";
+    	$s .= "\t<th class=\"calMonthBackward\">" . (($prevMonth == "") ? "&nbsp;" : "<a href=\"$prevMonth\" title=\"$prevMonthName\">&laquo;</a>")  . "</th>\n";
     	$s .= "\t<th class=\"calMonthCurrent\" colspan=\"5\">$header</th>\n";
-    	$s .= "\t<th class=\"calMonthForward\">" . (($nextMonth == "") ? "&nbsp;" : "<a href=\"$nextMonth\" title=\"$prevMonthName\">&raquo;</a>")  . "</th>\n";
+    	$s .= "\t<th class=\"calMonthForward\">" . (($nextMonth == "") ? "&nbsp;" : "<a href=\"$nextMonth\" title=\"$nextMonthName\">&raquo;</a>")  . "</th>\n";
     	$s .= "</tr>\n";
        // */   // remove this line #3   to go to t
 




More information about the pLog-svn mailing list