diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-03-28 01:26:37 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-03-28 01:26:37 +0000 |
commit | 7690f9bb8bfe33b6d0e85c6473f8d39a4fddf0df (patch) | |
tree | 80fc0ff864a27cbf3597a0dfbb094fc744cf039d /include | |
parent | 51a4de797c76dbda26741acacbda76013caa5f64 (diff) |
fix: php 5 errors and warnings
improve: put back update remote site from local listing.xml functionality
(allow_url_fopen is false on several ISPs)
git-svn-id: http://piwigo.org/svn/trunk@1107 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-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.'">'; |