diff options
author | thomascube <thomas@roundcube.net> | 2008-10-26 14:58:57 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-10-26 14:58:57 +0000 |
commit | 7ce1931bbbb740edf2e95a5eaa64959b0be07269 (patch) | |
tree | 205478ca1a3398e2fcccebf9da55703281a94b66 /bin | |
parent | 24c7df078a0adee8ee885d748921dfeb23bbda1a (diff) |
Lets keep things simple. quotaimage does not use session stuff
Diffstat (limited to 'bin')
-rw-r--r-- | bin/quotaimg.php | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/bin/quotaimg.php b/bin/quotaimg.php index 74a3d994a..a62bf3690 100644 --- a/bin/quotaimg.php +++ b/bin/quotaimg.php @@ -18,29 +18,10 @@ */ -// define INSTALL_PATH since it's sort of custom from /bin/quotaimg.php -define('INSTALL_PATH', str_replace('bin', '', dirname(__FILE__))); - -// include environment -require_once INSTALL_PATH . 'program/include/iniset.php'; - -// init application and start session with requested task -$RCMAIL = rcmail::get_instance(); -if (empty($RCMAIL->user->ID)) { - die('You are not logged in, there is no need you are allowed to render the quota image.'); -} - -$used = ((isset($_GET['u']) && !empty($_GET['u'])) || $_GET['u']=='0')?(int)$_GET['u']:'??'; -$quota = ((isset($_GET['q']) && !empty($_GET['q'])) || $_GET['q']=='0')?(int)$_GET['q']:'??'; -$width = empty($_GET['w']) ? 100 : (int)$_GET['w']; -$height = empty($_GET['h']) ? 14 : (int)$_GET['h']; - -// let's apply some sanity -// @todo Maybe a config option? -if ($width > 200 || $height > 50) { - $width = 100; - $height = 14; -} +$used = isset($_GET['u']) ? intval($_GET['u']) : '??'; +$quota = isset($_GET['q']) ? intval($_GET['q']) : '??'; +$width = empty($_GET['w']) ? 100 : min(300, intval($_GET['w'])); +$height = empty($_GET['h']) ? 14 : min(50, intval($_GET['h'])); /** * Quota display |