summaryrefslogtreecommitdiff
path: root/lib/imagefile.php
diff options
context:
space:
mode:
authorSean Murphy <sgmurphy@gmail.com>2009-02-05 15:01:44 -0500
committerSean Murphy <sgmurphy@gmail.com>2009-02-05 15:01:44 -0500
commitd4bdb2dc1924e2753baa4cf1751acb08b6ed3cae (patch)
treefbe24952537eeb5ee255d8282658393d6636f923 /lib/imagefile.php
parent746a5d75071a2a7c913c522ea78f2b88b87f4ce2 (diff)
Better fix for displaying max file size.
Diffstat (limited to 'lib/imagefile.php')
-rw-r--r--lib/imagefile.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/imagefile.php b/lib/imagefile.php
index f9f47a47e..74c3d14f0 100644
--- a/lib/imagefile.php
+++ b/lib/imagefile.php
@@ -183,9 +183,14 @@ class ImageFile
@unlink($this->filename);
}
- static function maxFileSize()
+ static function maxFileSize($return_bytes = false)
{
- $limit = min(ImageFile::strToInt(ini_get('post_max_size')), ImageFile::strToInt(ini_get('upload_max_filesize')));
+ $limit = min(ImageFile::strToInt(ini_get('post_max_size')), ImageFile::strToInt(ini_get('upload_max_filesize')), ImageFile::strToInt(ini_get('memory_limit')));
+
+ if ($return_bytes) {
+ return $limit;
+ }
+
return ($limit/(1024*1024)).'MB';
}