diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-02-28 04:28:06 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-02-28 04:28:06 +0000 |
commit | 97898b36858d5f187e9659d723c71eb04b2f0593 (patch) | |
tree | 363cfd342a409cc4f1109dbf1469c12e9090a6ff /include/config_default.inc.php | |
parent | 4cd5b05d406a9820a0523ac26f254f4ce4fd5147 (diff) |
calendar improvements: week on weekly list starts on Monday,
ability to show grayed months/weeks/days (without any picture in it),
added icons for created/posted fields
language uniformization
calendar fixes: correct number of pictures in calendar view,
code simplification (I hope so)
git-svn-id: http://piwigo.org/svn/trunk@1059 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index a21351241..224e906b4 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -90,7 +90,7 @@ $conf['anti-flood_time'] = 60; // catgory $conf['calendar_datefield'] = 'date_creation'; -// calendar_multi_bar : the calendar shows a maximum number of +// calendar_multi_bar : the calendar shows a maximum number of // year/month/week/day navigation bars $conf['calendar_multi_bar'] = true; @@ -98,6 +98,10 @@ $conf['calendar_multi_bar'] = true; // year/month/week/day navigation bars $conf['calendar_show_any'] = true; +// calendar_show_empty : the calendar shows month/weeks/days even if there are +//no elements for these +$conf['calendar_show_empty'] = true; + // newcat_default_commentable : at creation, must a category be commentable // or not ? $conf['newcat_default_commentable'] = 'true'; @@ -249,7 +253,7 @@ $conf['show_exif'] = true; // // for PHP version newer than 4.1.2 : // $conf['show_exif_fields'] = array('CameraMake','CameraModel','DateTime'); -// +// $conf['show_exif_fields'] = array( 'Make', 'Model', @@ -270,11 +274,11 @@ $conf['use_exif_mapping'] = array( // | sessions | // +-----------------------------------------------------------------------+ -// session_use_cookies: specifies to use cookie to store +// session_use_cookies: specifies to use cookie to store // the session id on client side $conf['session_use_cookies'] = true; -// session_use_only_cookies: specifies to only use cookie to store +// session_use_only_cookies: specifies to only use cookie to store // the session id on client side $conf['session_use_only_cookies'] = true; @@ -284,7 +288,7 @@ $conf['session_use_trans_sid'] = false; // session_name: specifies the name of the session which is used as cookie name $conf['session_name'] = 'pwg_id'; -// session_save_handler: comment the line below +// session_save_handler: comment the line below // to use file handler for sessions. $conf['session_save_handler'] = 'db'; |