aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorflop25 <flop25@piwigo.org>2011-05-12 13:33:53 +0000
committerflop25 <flop25@piwigo.org>2011-05-12 13:33:53 +0000
commitad1ee72b98b643467f950b6ece95329eca95bea6 (patch)
tree268407fc79631c456dcdc3e4648be93d8fea57db /admin
parente5f831a729f2e3d9265e36b3111acf099aee68da (diff)
merge 10858
Message: bug:2292 Fixed the spelling of a function name. convert_shortand_to_bytes into convert_shorthand_to_bytes git-svn-id: http://piwigo.org/svn/branches/2.2@10859 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r--admin/include/functions_upload.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/include/functions_upload.inc.php b/admin/include/functions_upload.inc.php
index 1b688c0ea..2db3b12cb 100644
--- a/admin/include/functions_upload.inc.php
+++ b/admin/include/functions_upload.inc.php
@@ -769,13 +769,13 @@ function get_ini_size($ini_key, $in_bytes=true)
if ($in_bytes)
{
- $size = convert_shortand_notation_to_bytes($size);
+ $size = convert_shorthand_notation_to_bytes($size);
}
return $size;
}
-function convert_shortand_notation_to_bytes($value)
+function convert_shorthand_notation_to_bytes($value)
{
$suffix = substr($value, -1);
$multiply_by = null;