From 7a444c2f170641ce88c72d6087b03dd5aa0e3682 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 24 Mar 2016 17:47:47 +1100 Subject: [PATCH] Fix #12120 PMA_Util not found in insert_edit.lib.php Signed-off-by: Madhura Jayaratne --- ChangeLog | 1 + libraries/insert_edit.lib.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9f1e89f939..72c03fded9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog ====================== 4.6.1 (not yet released) +- issue #12120 PMA_Util not found in insert_edit.lib.php 4.6.0.0 (2016-03-22) + issue #11456 Disabled storage engines diff --git a/libraries/insert_edit.lib.php b/libraries/insert_edit.lib.php index 8e75536d0b..fceca5b184 100644 --- a/libraries/insert_edit.lib.php +++ b/libraries/insert_edit.lib.php @@ -2316,7 +2316,8 @@ function PMA_getCurrentValueForDifferentTypes($possibly_uploaded_val, $key, if (false !== $possibly_uploaded_val) { $current_value = $possibly_uploaded_val; } else if (! empty($multi_edit_funcs[$key])) { - $current_value = "'" . PMA_Util::sqlAddSlashes($current_value) . "'"; + $current_value = "'" . PMA\libraries\Util::sqlAddSlashes($current_value) + . "'"; } else { // c o l u m n v a l u e i n t h e f o r m if (isset($multi_edit_columns_type[$key])) {