From cbe2d9a1684eafdacf1beeece2644d67322128dc Mon Sep 17 00:00:00 2001 From: plegall Date: Fri, 4 Dec 2009 21:54:32 +0000 Subject: 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 --- include/ws_functions.inc.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'include/ws_functions.inc.php') 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()); + } } /* -- cgit v1.2.3