diff options
author | patdenice <patdenice@piwigo.org> | 2011-04-22 13:19:36 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2011-04-22 13:19:36 +0000 |
commit | a3963aedefad0eaefe0ba9aed463de35ee144d24 (patch) | |
tree | 7fc11b4a2be8348bc6fcf6458c7ee378741e55a8 /include/config_default.inc.php | |
parent | 041fc62aa12cbde0c073cbc4167137d84ea71706 (diff) |
feature:2274
Create thumbnail through ajax.
Remove $conf['tn_width'], $conf['tn_height'] and $conf['tn_compression_level'] parameters.
git-svn-id: http://piwigo.org/svn/trunk@10570 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index b2cb57e98..b5095e63f 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -113,7 +113,7 @@ $conf['calendar_show_empty'] = true; // 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. +// and smaller than upload thumbnails configuration size. $conf['calendar_month_cell_width'] =80; $conf['calendar_month_cell_height']=80; @@ -140,16 +140,6 @@ $conf['level_separator'] = ' / '; // 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'] = 128; - -// tn_compression_level: compression level for thumbnail creation. 0 is low -// quality, 100 is high quality. -$conf['tn_compression_level'] = 75; - // show_version : shall the version of Piwigo be displayed at the // bottom of each page ? $conf['show_version'] = true; |