From f80a20ff946642a507d650bc2170a07bc8c2a71a Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Sun, 3 May 2009 21:30:03 +0000 Subject: [PATCH] Don't use _ as function name - Gettext compatibility (bug #2786028) git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@596 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- _compile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_compile.php b/_compile.php index d30942f1..f685f7b2 100644 --- a/_compile.php +++ b/_compile.php @@ -104,7 +104,7 @@ function php_shrink($input) { foreach ($short_functions as $key => $val) { if (isset($defined_functions[$key])) { do { - $short_functions[$key] = short_identifier($number, implode("", range('a', 'z')) . '_'); + $short_functions[$key] = short_identifier($number, implode("", range('a', 'z'))); $number++; } while (isset($short_functions[$short_functions[$key]])); }