Update of /cvsroot/phpicalendar/phpicalendar/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv851/includes
Modified Files:
calendar_nav.php
Log Message:
Fixed month pulldowns for IE 6.
Index: calendar_nav.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/includes/calendar_nav.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** calendar_nav.php 5 Nov 2003 06:17:25 -0000 1.13
--- calendar_nav.php 14 Nov 2003 22:36:54 -0000 1.14
***************
*** 106,114 ****
echo '<b>'.$jump_lang.'</b><br>';
echo '<img src="images/spacer.gif" width="1" height="6" alt=" "><br>';
! echo "<form style=\"margin-bottom:0;\" action=\"month.php\" method=\"GET\"><select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value+'$query');\">";
include('./functions/list_icals.php');
include('./functions/list_years.php');
include('./functions/list_months.php');
include('./functions/list_weeks.php');
echo "</form>";
echo '<img src="images/spacer.gif" width="1" height="6" alt=" "><br>';
--- 106,118 ----
echo '<b>'.$jump_lang.'</b><br>';
echo '<img src="images/spacer.gif" width="1" height="6" alt=" "><br>';
! echo "<form style=\"margin-bottom:0;\" action=\"month.php\" method=\"GET\">";
include('./functions/list_icals.php');
+ echo '<br>';
include('./functions/list_years.php');
+ echo '<br>';
include('./functions/list_months.php');
+ echo '<br>';
include('./functions/list_weeks.php');
+ echo '<br>';
echo "</form>";
echo '<img src="images/spacer.gif" width="1" height="6" alt=" "><br>';
|