diff options
author | plegall <plg@piwigo.org> | 2005-01-16 11:13:30 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-01-16 11:13:30 +0000 |
commit | d5c2a2eda88f89bd3ed40523283fd601e90216ab (patch) | |
tree | 14ae7f3aded18e19ae294a7e1c12d8dcac01b3a6 /include/config.inc.php | |
parent | cc5ba30bd061d00be17bb26061962016e4112b9d (diff) |
- big update in thumbnail creation process : form is always shown with the
comprehensive list of pictures without thumbnails (no matter the
directory) unless there are no thumbnail missing.
- thumbnail creation process : form parameters are saved between 2 thumbnail
generations thanks to new process
- thumbnail creation process : can ask to create all missing thumbnails
- thumbnail creation process : default thumbnail width and height are
configured in include/config.inc.php
- thumbnail creation process : errors due to no write access directories are
catched
git-svn-id: http://piwigo.org/svn/trunk@695 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config.inc.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/config.inc.php b/include/config.inc.php index a25f22b98..edf3fb539 100644 --- a/include/config.inc.php +++ b/include/config.inc.php @@ -183,10 +183,17 @@ $conf['newcat_default_visible'] = 'true'; $conf['newcat_default_status'] = 'public'; // level_separator : character string used for separating a category level -// to the sub level +// to the sub level. Suggestions : ' / ', ' » ', ' → ', ' - ', +// ' >' $conf['level_separator'] = ' / '; // paginate_pages_around : on paginate navigation bar, how many pages // display before and after the current page ? $conf['paginate_pages_around'] = 2; + +// tn_width : default width for thumbnails creation +$conf['tn_width'] = 128; + +// tn_height : default height for thumbnails creation +$conf['tn_height'] = 96; ?> |