aboutsummaryrefslogtreecommitdiffstats
path: root/include/calendar_monthly.class.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2009-03-03 02:05:35 +0000
committerrvelices <rv-github@modusoptimus.com>2009-03-03 02:05:35 +0000
commit781ec8d7c4989b39dd289071e16f156857b6acfb (patch)
tree8c0b321c3c55de2042d30193b0843b56e6665094 /include/calendar_monthly.class.php
parent54902df0a4d0c9cd0c93bc285c7388f6c9e5205e (diff)
- improvement: show the number of images in the chronology upper navigation bar on mouseover (title element);
git-svn-id: http://piwigo.org/svn/trunk@3168 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/calendar_monthly.class.php')
-rw-r--r--include/calendar_monthly.class.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/calendar_monthly.class.php b/include/calendar_monthly.class.php
index 8d58833c0..4a25e0ee4 100644
--- a/include/calendar_monthly.class.php
+++ b/include/calendar_monthly.class.php
@@ -257,14 +257,14 @@ function build_global_calendar(&$tpl_var)
$url = duplicate_index_url( array('chronology_date'=>$chronology_date) );
$nav_bar = $this->get_nav_bar_from_items( $chronology_date,
- $year_data['children'], 'calCal', false, false, $lang['month'] );
+ $year_data['children'], false, false, $lang['month'] );
$tpl_var['calendar_bars'][] =
array(
'U_HEAD' => $url,
'NB_IMAGES' => $year_data['nb_images'],
'HEAD_LABEL' => $year,
- 'NAV_BAR' => $nav_bar,
+ 'items' => $nav_bar,
);
}
return true;
@@ -307,14 +307,14 @@ function build_year_calendar(&$tpl_var)
$url = duplicate_index_url( array('chronology_date'=>$chronology_date) );
$nav_bar = $this->get_nav_bar_from_items( $chronology_date,
- $month_data['children'], 'calCal', false );
+ $month_data['children'], false );
$tpl_var['calendar_bars'][] =
array(
'U_HEAD' => $url,
'NB_IMAGES' => $month_data['nb_images'],
'HEAD_LABEL' => $lang['month'][$month],
- 'NAV_BAR' => $nav_bar,
+ 'items' => $nav_bar,
);
}
return true;