From a00eb5192415fcd4fb2d8310ce64670016d263db Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Fri, 14 Oct 2016 11:54:24 +0200 Subject: [PATCH] Minor fix (cherry picked from commit 43ad1c0f550bad487382ed6b29b0316b7f9c0b82) --- pandora_console/include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index bb46d57171..81f4b643c2 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -2082,7 +2082,7 @@ function is_snapshot_data ($data) { $temp = array(); $count = preg_match_all ("/\n/", $data, $temp); - if ( ($count > 2) || (is_image_data($data) ) + if ( ($count > 2) || (is_image_data($data)) ) return 1; else return 0;