From 626463feff68687493105fb302f75f0907f95256 Mon Sep 17 00:00:00 2001 From: Xuefer Date: Thu, 23 Aug 2012 02:05:49 +0000 Subject: [PATCH] fix variable editing git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1142 c26eb9a1-5813-0410-bd6c-c2e55f420ca7 --- htdocs/cacher/edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/cacher/edit.php b/htdocs/cacher/edit.php index 5add0db..f24bb92 100644 --- a/htdocs/cacher/edit.php +++ b/htdocs/cacher/edit.php @@ -22,7 +22,7 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') { exit; } $value = xcache_get($name); -if (!empty($enable['enable_eval'])) { +if (!empty($config['enable_eval'])) { $value = var_export($value, true); $editable = true; }