diff options
Diffstat (limited to '')
-rw-r--r-- | include/calendar_base.class.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/calendar_base.class.php b/include/calendar_base.class.php index ee17c1ac7..7a1356db8 100644 --- a/include/calendar_base.class.php +++ b/include/calendar_base.class.php @@ -5,9 +5,9 @@ // +-----------------------------------------------------------------------+ // | branch : BSF (Best So Far) // | file : $RCSfile$ -// | last update : $Date: 2006-01-27 02:11:43 +0100 (ven, 27 jan 2006) $ -// | last modifier : $Author: rvelices $ -// | revision : $Revision: 1014 $ +// | last update : $Date$ +// | last modifier : $Author$ +// | revision : $Revision$ // +-----------------------------------------------------------------------+ // | This program is free software; you can redistribute it and/or modify | // | it under the terms of the GNU General Public License as published by | @@ -181,7 +181,7 @@ class CalendarBase { $nav_bar .= '<span class="'.$class_prefix.'">'; $url = duplicate_index_url( - array('chronology_date'=>array_merge($date_components,$item)), + array('chronology_date'=>array_merge($date_components,array($item))), array( 'start' ) ); $nav_bar .= '<a href="'.$url.'">'; @@ -207,7 +207,7 @@ class CalendarBase { $nav_bar .= '<span class="'.$class_prefix.'">'; $url = duplicate_index_url( - array('chronology_date'=>array_merge($date_components,'any')), + array('chronology_date'=>array_merge($date_components,array('any'))), array( 'start' ) ); $nav_bar .= '<a href="'.$url.'">'; |