From: <cl...@us...> - 2003-09-14 18:31:18
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv21366/includes Modified Files: event.php todo.php Log Message: Fixed SF Bug #795098 Index: event.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** event.php 13 Aug 2003 05:37:36 -0000 1.8 --- event.php 14 Sep 2003 18:31:14 -0000 1.9 *************** *** 90,94 **** <table border="0" width="430" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="left" valign="top" width="1%" class="sideback"><img src="images/spacer.gif" width="1" height="20" alt=" "></td> <td align="center" width="98%" class="sideback"><font class="G10BOLD"> <?php --- 90,94 ---- <table border="0" width="430" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="left" valign="top" width="1%" class="sideback"><img src="../images/spacer.gif" width="1" height="20" alt=" "></td> <td align="center" width="98%" class="sideback"><font class="G10BOLD"> <?php *************** *** 103,107 **** </tr> <tr> ! <td colspan="3"><img src="images/spacer.gif" width="1" height="6" alt=" "></td> </tr> <tr> --- 103,107 ---- </tr> <tr> ! <td colspan="3"><img src="../images/spacer.gif" width="1" height="6" alt=" "></td> </tr> <tr> *************** *** 113,117 **** ?> <tr> ! <td width="1%"><img src="images/spacer.gif" width="6" height="1" alt=" "></td> <td align="left" colspan="2" class="V12"><?php echo $event.' '.$event_times.'<br><br>'; ?></td> </tr> --- 113,117 ---- ?> <tr> ! <td width="1%"><img src="../images/spacer.gif" width="6" height="1" alt=" "></td> <td align="left" colspan="2" class="V12"><?php echo $event.' '.$event_times.'<br><br>'; ?></td> </tr> *************** *** 119,123 **** <?php if ($description) { ?> <tr> ! <td width="1%"><img src="images/spacer.gif" width="6" height="1" alt=" "></td> <td align="left" colspan="2" class="V12"> <?php echo ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", --- 119,123 ---- <?php if ($description) { ?> <tr> ! <td width="1%"><img src="../images/spacer.gif" width="6" height="1" alt=" "></td> <td align="left" colspan="2" class="V12"> <?php echo ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", Index: todo.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/todo.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** todo.php 30 Jun 2003 22:37:52 -0000 1.8 --- todo.php 14 Sep 2003 18:31:14 -0000 1.9 *************** *** 80,89 **** <table border="0" width="430" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="left" valign="top" width="1%" class="sideback"><img src="images/spacer.gif" width="1" height="20" alt=" "></td> <td align="center" width="98%" class="sideback"><font class="G10BOLD"><?php echo "$calendar_name $calendar_lang"; ?></font></td> <td align="right" valign="top" width="1%" class="sideback"></td> </tr> <tr> ! <td colspan="3"><img src="images/spacer.gif" width="1" height="6" alt=" "></td> </tr> <tr> --- 80,89 ---- <table border="0" width="430" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="left" valign="top" width="1%" class="sideback"><img src="../images/spacer.gif" width="1" height="20" alt=" "></td> <td align="center" width="98%" class="sideback"><font class="G10BOLD"><?php echo "$calendar_name $calendar_lang"; ?></font></td> <td align="right" valign="top" width="1%" class="sideback"></td> </tr> <tr> ! <td colspan="3"><img src="../images/spacer.gif" width="1" height="6" alt=" "></td> </tr> <tr> *************** *** 91,95 **** <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td width="1%"><img src="images/spacer.gif" width="6" height="1" alt=" "></td> <td align="left" colspan="2" class="V12"><?php echo ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",'<a target="_new" href="\0">\0</a>',$vtodo_text).'<br /><br />'; ?></td> </tr> --- 91,95 ---- <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td width="1%"><img src="../images/spacer.gif" width="6" height="1" alt=" "></td> <td align="left" colspan="2" class="V12"><?php echo ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",'<a target="_new" href="\0">\0</a>',$vtodo_text).'<br /><br />'; ?></td> </tr> *************** *** 97,101 **** <?php if ($description) { ?> <tr> ! <td width="1%"><img src="images/spacer.gif" width="6" height="1" alt=" "></td> <td align="left" colspan="2" class="V12"> <?php echo ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", '<a target="_new" href="\0">\0</a>', $description); ?></td> --- 97,101 ---- <?php if ($description) { ?> <tr> ! <td width="1%"><img src="../images/spacer.gif" width="6" height="1" alt=" "></td> <td align="left" colspan="2" class="V12"> <?php echo ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", '<a target="_new" href="\0">\0</a>', $description); ?></td> |