diff options
author | plegall <plg@piwigo.org> | 2005-09-18 22:29:17 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-09-18 22:29:17 +0000 |
commit | 541c302c4023cc5514f6d09cc6eff1abd8543eb5 (patch) | |
tree | d93e673da677fb7b1bfc15b60077d693a266afd8 /admin/configuration.php | |
parent | b1c5e25b5e4eed872230ebffe72cc7ece4533ee2 (diff) |
- bug 111 fixed: "Can't add virtual category when cookie
disabled". Correction reported from branch 1.4.
- bug 109 fixed : "disabled "best rated" menu item when rating is not
enabled". Correction reported from branch 1.4.
- bug 95 fixed : "default maxwidth and maxheight not registered". Correction
reported from branch 1.4.
git-svn-id: http://piwigo.org/svn/trunk@869 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/configuration.php | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/admin/configuration.php b/admin/configuration.php index 9da9c56d3..ecbdcf1d4 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -82,6 +82,22 @@ if (isset($_POST['submit'])) { array_push($page['errors'], $lang['periods_error']); } + // maxwidth + if (isset($_POST['default_maxwidth']) + and !empty($_POST['default_maxwidth']) + and (!preg_match($int_pattern, $_POST['default_maxwidth']) + or $_POST['default_maxwidth'] < 50)) + { + array_push($page['errors'], $lang['maxwidth_error']); + } + // maxheight + if (isset($_POST['default_maxheight']) + and !empty($_POST['default_maxheight']) + and (!preg_match($int_pattern, $_POST['default_maxheight']) + or $_POST['default_maxheight'] < 50)) + { + array_push($page['errors'], $lang['maxheight_error']); + } break; } } @@ -89,7 +105,7 @@ if (isset($_POST['submit'])) // updating configuration if no error found if (count($page['errors']) == 0) { - echo '<pre>'; print_r($_POST); echo '</pre>'; +// echo '<pre>'; print_r($_POST); echo '</pre>'; $result = pwg_query('SELECT * FROM '.CONFIG_TABLE); while ($row = mysql_fetch_array($result)) { @@ -176,6 +192,8 @@ switch ($page['section']) 'NB_ROW_PAGE'=>$conf['nb_line_page'], 'CONF_RECENT'=>$conf['recent_period'], 'NB_COMMENTS_PAGE'=>$conf['nb_comment_page'], + 'MAXWIDTH'=>$conf['default_maxwidth'], + 'MAXHEIGHT'=>$conf['default_maxheight'], 'EXPAND_YES'=>$expand_yes, 'EXPAND_NO'=>$expand_no, 'SHOW_COMMENTS_YES'=>$show_yes, |