From: Jakub Vrana Date: Thu, 9 Jan 2014 20:37:10 +0000 (-0800) Subject: Elasticsearch: Don't minimize $php_errormsg X-Git-Tag: v4.0.1~18 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=cb4eb8a4677cee502f973ec97c864c4dd6c96af3;p=adminer.git Elasticsearch: Don't minimize $php_errormsg --- diff --git a/compile.php b/compile.php index a431645b..8e84dea2 100755 --- a/compile.php +++ b/compile.php @@ -168,7 +168,7 @@ function short_identifier($number, $chars) { // based on http://latrine.dgx.cz/jak-zredukovat-php-skripty function php_shrink($input) { global $VERSION; - $special_variables = array_flip(array('$this', '$GLOBALS', '$_GET', '$_POST', '$_FILES', '$_COOKIE', '$_SESSION', '$_SERVER', '$http_response_header')); + $special_variables = array_flip(array('$this', '$GLOBALS', '$_GET', '$_POST', '$_FILES', '$_COOKIE', '$_SESSION', '$_SERVER', '$http_response_header', '$php_errormsg')); $short_variables = array(); $shortening = true; $tokens = token_get_all($input);