From: <cl...@us...> - 2003-09-21 17:13:49
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv4741/includes Modified Files: calendar_nav.php sidebar.php Log Message: Removed extra form space with a style. Index: calendar_nav.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/calendar_nav.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** calendar_nav.php 21 Sep 2003 05:59:31 -0000 1.10 --- calendar_nav.php 21 Sep 2003 17:13:46 -0000 1.11 *************** *** 105,109 **** echo '<b>'.$jump_lang.'</b><br>'; echo '<img src="images/spacer.gif" width="1" height="6" alt=" "><br>'; ! echo "<form 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'); --- 105,109 ---- 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'); Index: sidebar.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/sidebar.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** sidebar.php 21 Sep 2003 05:59:31 -0000 1.20 --- sidebar.php 21 Sep 2003 17:13:46 -0000 1.21 *************** *** 14,18 **** } ! $search_box = '<form action="search.php" method="GET"><input type="hidden" name="cal" value="'.$cal.'"><input type="hidden" name="getdate" value="'.$getdate.'"><input type="text" style="font-size:10px" size="15" class="search_style" name="query" value="'.$search_lang.'" onfocus="javascript:if(this.value==\''.$search_lang.'\') {this.value=\'\';}" onblur="javascript:if(this.value==\'\') {this.value=\''.$search_lang.'\'}"><INPUT type="image" src="styles/'.$style_sheet.'/search.gif" name="submit" value="Search"></form>'; ?> --- 14,18 ---- } ! $search_box = '<form style="margin-bottom:0;" action="search.php" method="GET"><input type="hidden" name="cal" value="'.$cal.'"><input type="hidden" name="getdate" value="'.$getdate.'"><input type="text" style="font-size:10px" size="15" class="search_style" name="query" value="'.$search_lang.'" onfocus="javascript:if(this.value==\''.$search_lang.'\') {this.value=\'\';}" onblur="javascript:if(this.value==\'\') {this.value=\''.$search_lang.'\'}"><INPUT type="image" src="styles/'.$style_sheet.'/search.gif" name="submit" value="Search"></form>'; ?> *************** *** 51,55 **** echo '<div style="padding: 5px;">'; ! echo '<form action="day.php" method="GET">'; echo "<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value+'$query');\">"; include('./functions/list_icals.php'); --- 51,55 ---- echo '<div style="padding: 5px;">'; ! echo '<form style="margin-bottom:0;" action="day.php" method="GET">'; echo "<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value+'$query');\">"; include('./functions/list_icals.php'); *************** *** 62,66 **** } if ($display_custom_goto == "yes") { ! echo '<form action="day.php" method="GET">'; echo '<input type="hidden" name="cal" value="'.urlencode($cal).'">'; echo '<input type="text" style="width:160px; font-size:10px" name="jumpto_day">'; --- 62,66 ---- } if ($display_custom_goto == "yes") { ! echo '<form style="margin-bottom:0;" action="day.php" method="GET">'; echo '<input type="hidden" name="cal" value="'.urlencode($cal).'">'; echo '<input type="text" style="width:160px; font-size:10px" name="jumpto_day">'; |