From: <cl...@us...> - 2004-05-15 02:42:54
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1904 Modified Files: README search.php Log Message: Moving files to valid XHTML. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** README 3 Feb 2004 23:02:09 -0000 1.62 --- README 15 May 2004 02:42:13 -0000 1.63 *************** *** 136,140 **** 0.9.3 -Multiple calendar support (up to 8). ! -Fixed pesky <BR> tags in event popup. -Added Esperanto language. -Major bug fixes. --- 136,140 ---- 0.9.3 -Multiple calendar support (up to 8). ! -Fixed pesky <br /> tags in event popup. -Added Esperanto language. -Major bug fixes. Index: search.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/search.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** search.php 9 Feb 2004 00:51:48 -0000 1.29 --- search.php 15 May 2004 02:42:13 -0000 1.30 *************** *** 232,236 **** else $list .= $monthsofyear_lang[($month-1)].$d; } ! $print .= '<br>'."\n"; $print .= str_replace('%list%', $list, $format_recur_lang['bymonth']); } --- 232,236 ---- else $list .= $monthsofyear_lang[($month-1)].$d; } ! $print .= '<br />'."\n"; $print .= str_replace('%list%', $list, $format_recur_lang['bymonth']); } *************** *** 247,251 **** else $list .= $day.$d; } ! $print .= '<br>'."\n"; $print .= str_replace('%list%', $list, $format_recur_lang['bymonthday']); } --- 247,251 ---- else $list .= $day.$d; } ! $print .= '<br />'."\n"; $print .= str_replace('%list%', $list, $format_recur_lang['bymonthday']); } *************** *** 263,267 **** else $list .= $daysofweek_lang[$num].$d; } ! $print .= '<br>'."\n"; $print .= str_replace('%list%', $list, $format_recur_lang['byday']); } --- 263,267 ---- else $list .= $daysofweek_lang[$num].$d; } ! $print .= '<br />'."\n"; $print .= str_replace('%list%', $list, $format_recur_lang['byday']); } |