aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/category_calendar.inc.php4
-rw-r--r--include/config.inc.php2
-rw-r--r--include/functions_html.inc.php2
3 files changed, 4 insertions, 4 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>';
}
diff --git a/include/config.inc.php b/include/config.inc.php
index f33e53ba3..ec0930608 100644
--- a/include/config.inc.php
+++ b/include/config.inc.php
@@ -89,6 +89,6 @@ $conf['show_exif_fields'] = array('Make',
// for PHP version newer than 4.1.2 :
// $conf['show_exif_fields'] = array('CameraMake','CameraModel','DateTime');
-$conf['calendar_datefield'] = 'date_creation';
+$conf['calendar_datefield'] = 'date_available';
$conf['rate'] = true;
?>
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php
index 5d91aa7aa..4b456ca7b 100644
--- a/include/functions_html.inc.php
+++ b/include/functions_html.inc.php
@@ -86,7 +86,7 @@ function create_navigation_bar( $url, $nb_element, $start,
$temp_start = ( $i - 1 ) * $nb_element_page;
if ( $temp_start == $start )
{
- $navigation_bar.= ' <span style="font-weight:bold;">'.$i.'</span> ';
+ $navigation_bar.= ' <span class="pageNumberSelected">'.$i.'</span> ';
}
else
{