Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3873/functions
Modified Files:
list_functions.php
Log Message:
Fix for [ 1014753 ] Incorrect character display.
Index: list_functions.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/list_functions.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** list_functions.php 1 Sep 2004 21:27:00 -0000 1.11
--- list_functions.php 3 Sep 2004 21:22:39 -0000 1.12
***************
*** 17,20 ****
--- 17,21 ----
foreach ($master_array['-3'] as $key => $val) {
if ($i > $unique_colors) $i = 1;
+ $val = str_replace ("\,", ",", $val);
$return .= '<img src="templates/'.$template.'/images/monthdot_'.$i.'.gif" alt="" /> '.$val.'<br />';
$i++;
|