Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8913/functions
Modified Files:
init.inc.php template.php
Log Message:
month and year location display bugs
Index: init.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init.inc.php,v
retrieving revision 1.107
retrieving revision 1.108
diff -C2 -d -r1.107 -r1.108
*** init.inc.php 16 May 2007 22:20:47 -0000 1.107
--- init.inc.php 18 May 2007 19:00:16 -0000 1.108
***************
*** 1,4 ****
<?php
! $phpicalendar_version = '2.23 rc1';
// uncomment when developing, comment for shipping version
//error_reporting (E_ERROR | E_WARNING | E_PARSE);
--- 1,4 ----
<?php
! $phpicalendar_version = '2.24';
// uncomment when developing, comment for shipping version
//error_reporting (E_ERROR | E_WARNING | E_PARSE);
Index: template.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/template.php,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -d -r1.89 -r1.90
*** template.php 16 May 2007 22:24:44 -0000 1.89
--- template.php 18 May 2007 19:00:16 -0000 1.90
***************
*** 943,947 ****
}
}
! $switch['EVENT'] .= (isset($val['location'])) ? "<span class='V9G'>".$val['location']."</span>" : '';
}
}
--- 943,947 ----
}
}
! $switch['LOCATION'] = (isset($val['location'])) ? "<span class='V9G'>".$val['location']."</span>" : '';
}
}
|