From e933baa29b8371932d3a901969bb1be4fc5b7c52 Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Fri, 24 Jul 2009 12:02:19 +0000 Subject: [PATCH] Example sets admin_lang cookie git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@903 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- compile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.php b/compile.php index 3ebf1677..2515dfee 100644 --- a/compile.php +++ b/compile.php @@ -180,8 +180,8 @@ if (file_exists(dirname(__FILE__) . "/" . $_SERVER["argv"][1] . "/index.php")) { $project = $_SERVER["argv"][1]; array_shift($_SERVER["argv"]); } +$_COOKIE["adminer_lang"] = $_SERVER["argv"][1]; // Adminer functions read language from cookie if (isset($_SERVER["argv"][1])) { - $_COOKIE["adminer_lang"] = $_SERVER["argv"][1]; // Adminer functions read language from cookie include dirname(__FILE__) . "/adminer/include/lang.inc.php"; if (isset($_SERVER["argv"][2]) || !isset($langs[$_COOKIE["adminer_lang"]])) { echo "Usage: php compile.php [adminer] [lang]\nPurpose: Compile adminer[-lang].php from adminer/index.php.\n";