diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-09-04 08:07:33 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-09-04 08:07:33 +0000 |
commit | dd38c1463991eb623e2d810525bd4d341cba1ef1 (patch) | |
tree | 7ba6a7be19ae195357a9f5acfd5fd1404badf956 /include/category_calendar.inc.php | |
parent | af5bb2dde0857fea96266e4fc8a3fae705b50260 (diff) |
- bug correction : when coming from picture.php on a picture of category.php
page superior to the first, the right page was displayed (the one
including the element) but the navigation bar was always saying we were on
the first page
- distinguish CSS classes span.dateSelected and span.pageNumberSelected
git-svn-id: http://piwigo.org/svn/trunk@514 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/category_calendar.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/category_calendar.inc.php b/include/category_calendar.inc.php index 2d559ace7..f41f5bb97 100644 --- a/include/category_calendar.inc.php +++ b/include/category_calendar.inc.php @@ -61,7 +61,7 @@ foreach ($calendar_years as $calendar_year => $nb_picture_year) if (isset($page['calendar_year']) and $calendar_year == $page['calendar_year']) { - $years_nav_bar.= ' <span class="selected">'.$calendar_year.'</span>'; + $years_nav_bar.= ' <span class="dateSelected">'.$calendar_year.'</span>'; } else { @@ -114,7 +114,7 @@ SELECT DISTINCT(MONTH('.$conf['calendar_datefield'].')) AS month if (isset($page['calendar_month']) and $calendar_month == $page['calendar_month']) { - $months_nav_bar.= ' <span class="selected">'; + $months_nav_bar.= ' <span class="dateSelected">'; $months_nav_bar.= $lang['month'][(int)$calendar_month]; $months_nav_bar.= '</span>'; } |