diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 04:57:55 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 05:00:17 -0500 |
commit | 499aef74145a32db8c73aeacb9c5d2dd5da40771 (patch) | |
tree | 946943934e81cef383c4095df2e7e25421fdeaf0 | |
parent | 1e7b500d1677ddfbe0bd54f7a4d7660bdcd74687 (diff) | |
download | ampache-499aef74145a32db8c73aeacb9c5d2dd5da40771.tar.gz ampache-499aef74145a32db8c73aeacb9c5d2dd5da40771.tar.bz2 ampache-499aef74145a32db8c73aeacb9c5d2dd5da40771.zip |
Fix sed error
-rw-r--r-- | lib/general.lib.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/general.lib.php b/lib/general.lib.php index 9ba241b2..0e0f10c8 100644 --- a/lib/general.lib.php +++ b/lib/general.lib.php @@ -27,8 +27,8 @@ */ function set_memory_limit($new_limit) { - $current_limit = unUI::format_bytes(ini_get('memory_limit')); - $new_limit = unUI::format_bytes($new_limit); + $current_limit = UI::unformat_bytes(ini_get('memory_limit')); + $new_limit = UI::unformat_bytes($new_limit); if ($current_limit < $new_limit) { ini_set (memory_limit, $new_limit); |