Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2011-06-27 16:48:15 +0400
committerMichal Čihař <mcihar@suse.cz>2011-06-27 16:48:15 +0400
commitc9c9fdf49dfde051ce4b94ed8b9f6acc86e25a62 (patch)
tree88f3a2785f5ad79341b60785eda0c2b9c0ca7926 /tbl_alter.php
parent6a422caf527226740155c7e3682f2f3c61a85696 (diff)
Consistent capitalisation of PMA_sqlAddSlashes
Diffstat (limited to 'tbl_alter.php')
-rw-r--r--tbl_alter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_alter.php b/tbl_alter.php
index 743e92503b..316c48e27e 100644
--- a/tbl_alter.php
+++ b/tbl_alter.php
@@ -170,7 +170,7 @@ if ($abort == false) {
* @todo optimize in case of multiple fields to modify
*/
for ($i = 0; $i < $selected_cnt; $i++) {
- $_REQUEST['field'] = PMA_sqlAddslashes($selected[$i], true);
+ $_REQUEST['field'] = PMA_sqlAddSlashes($selected[$i], true);
$result = PMA_DRIZZLE
? PMA_DBI_query('SHOW COLUMNS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db) . ' WHERE Field = \'' . $_REQUEST['field'] . '\';')
: PMA_DBI_query('SHOW FULL COLUMNS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db) . ' LIKE \'' . $_REQUEST['field'] . '\';');