From f5e42669894d02a92dfdc7341e9845009e8df9a2 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 1 Oct 2016 14:27:55 -0700 Subject: [PATCH] Fix for apostrophe issue in multilan pref. --- e107_handlers/admin_ui.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/admin_ui.php b/e107_handlers/admin_ui.php index 8feaa359e..ecc4b26ce 100644 --- a/e107_handlers/admin_ui.php +++ b/e107_handlers/admin_ui.php @@ -5423,7 +5423,7 @@ class e_admin_ui extends e_admin_controller_ui } else { - $this->getConfig()->setPref($key.'/'.e_LANGUAGE, $val); + $this->getConfig()->setPostedData($key.'/'.e_LANGUAGE, $val); } }