From b0180288e049b472f3fefbfb28d7bed77e718b37 Mon Sep 17 00:00:00 2001 From: shadlaws Date: Sat, 16 Feb 2013 08:23:36 +0100 Subject: #1749, 1754, 1901 - revert two recent commits that check for Zend Guard obfuscation level support. This is not the root of the problem for all installs, and can trigger false positives that break previously-working installs... we'll have to find a better way. --- installer/installer.php | 5 ----- 1 file changed, 5 deletions(-) (limited to 'installer') diff --git a/installer/installer.php b/installer/installer.php index 2b0f1452..4ce80ee7 100644 --- a/installer/installer.php +++ b/installer/installer.php @@ -243,11 +243,6 @@ class installer { $errors[] = "Gallery cannot function when PHP is in Safe Mode. Please disable safe mode."; } - if (function_exists("zend_current_obfuscation_level") && (zend_current_obfuscation_level() >= 3)) { - $errors[] = "Gallery doesn't use Zend Guard code obfuscation, and is incompatible if it's running " . - "with a level of 3 or higher. Please edit your main php.ini file and change/add the following line: 'zend_loader.obfuscation_level_support = 2'"; - } - return @$errors; } -- cgit v1.2.3