diff options
Diffstat (limited to 'plugins/LocalFilesEditor/update_config.php')
-rw-r--r-- | plugins/LocalFilesEditor/update_config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/LocalFilesEditor/update_config.php b/plugins/LocalFilesEditor/update_config.php index dee442a84..da181ec97 100644 --- a/plugins/LocalFilesEditor/update_config.php +++ b/plugins/LocalFilesEditor/update_config.php @@ -37,8 +37,8 @@ if (isset($_POST['editarea']) and in_array($_POST['editarea'], $possible_values) } $query = ' UPDATE ' . CONFIG_TABLE . ' -SET value = "' . $_POST['editarea'] . '" -WHERE param="LocalFilesEditor" +SET value = \'' . $_POST['editarea'] . '\' +WHERE param=\'LocalFilesEditor\' LIMIT 1'; pwg_query($query); } |