diff options
author | plegall <plg@piwigo.org> | 2009-12-04 21:54:32 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2009-12-04 21:54:32 +0000 |
commit | cbe2d9a1684eafdacf1beeece2644d67322128dc (patch) | |
tree | 1bd3dc0eb7da7819aa6a7dae97f641f3d0d07ca5 | |
parent | 3a542bdb31906dd616c53851f396353562d52add (diff) |
bug 1210 fixed: check if the memory_get_usage function is available before
using it.
git-svn-id: http://piwigo.org/svn/branches/2.0@4424 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | include/ws_functions.inc.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php index 323c6c689..47747b7e1 100644 --- a/include/ws_functions.inc.php +++ b/include/ws_functions.inc.php @@ -972,7 +972,9 @@ function merge_chunks($output_filepath, $original_sum, $type) sort($chunks); - ws_logfile('[merge_chunks] memory_get_usage before loading chunks: '.memory_get_usage()); + if (function_exists('memory_get_usage')) { + ws_logfile('[merge_chunks] memory_get_usage before loading chunks: '.memory_get_usage()); + } $i = 0; @@ -980,7 +982,9 @@ function merge_chunks($output_filepath, $original_sum, $type) { $string = file_get_contents($chunk); - ws_logfile('[merge_chunks] memory_get_usage on chunk '.++$i.': '.memory_get_usage()); + if (function_exists('memory_get_usage')) { + ws_logfile('[merge_chunks] memory_get_usage on chunk '.++$i.': '.memory_get_usage()); + } if (!file_put_contents($output_filepath, $string, FILE_APPEND)) { @@ -991,7 +995,9 @@ function merge_chunks($output_filepath, $original_sum, $type) unlink($chunk); } - ws_logfile('[merge_chunks] memory_get_usage after loading chunks: '.memory_get_usage()); + if (function_exists('memory_get_usage')) { + ws_logfile('[merge_chunks] memory_get_usage after loading chunks: '.memory_get_usage()); + } } /* |