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])) {