diff options
Diffstat (limited to 'include/config_default.inc.php')
-rw-r--r-- | include/config_default.inc.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 224e906b4..5a61c12e3 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -102,6 +102,16 @@ $conf['calendar_show_any'] = true; //no elements for these $conf['calendar_show_empty'] = true; +// calendar_month_cell_width, calendar_month_cell_height : define the +// width and the height of a cell in the monthly calendar when viewing a +// given month. a value of 0 means that the pretty view is not shown. +// a good suggestion would be to have the width and the height equal +// and smaller than tn_width and tn_height. NOTE THAT tn_width AND tn_height +// MUST CORRESPOND APPROXIMATIVELY TO YOUR REAL THUMBNAIL SIZE, OTHERWISE +// THE IMAGES WILL NOT SHOW CORRECTLY +$conf['calendar_month_cell_width'] =80; +$conf['calendar_month_cell_height']=80; + // newcat_default_commentable : at creation, must a category be commentable // or not ? $conf['newcat_default_commentable'] = 'true'; |