diff options
Diffstat (limited to 'app/functions.php')
-rw-r--r-- | app/functions.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/functions.php b/app/functions.php index e732f308..9dd054fb 100644 --- a/app/functions.php +++ b/app/functions.php @@ -136,6 +136,16 @@ function build_app_version($ref, $commit_hash) } /** + * Get upload max size. + * + * @return string + */ +function get_upload_max_size() +{ + return min(ini_get('upload_max_filesize'), ini_get('post_max_size')); +} + +/** * Translate a string * * @return string |