From 80ce614ae385399d1a6e5ad7e8cd0b76e8f7f886 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 21 Dec 2004 06:12:27 +0000 Subject: [PATCH] r9: Fixed a problem in admin/options.php that was eval()'ing the wrong bit of option code. --- admin/options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/options.php b/admin/options.php index c432916..caaf87c 100755 --- a/admin/options.php +++ b/admin/options.php @@ -98,7 +98,7 @@ if ($_REQUEST['do'] == 'modify') break; default: - eval('$optcode = "' . addslasheslike($opt[3]) . '";'); + eval('$optcode = "' . $opt[2] . '";'); $admin->row_text(phrase('setting_' . $opt[1] . '_desc'), $optcode); break; } -- 2.22.5