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 /pmd_save_pos.php
parent6a422caf527226740155c7e3682f2f3c61a85696 (diff)
Consistent capitalisation of PMA_sqlAddSlashes
Diffstat (limited to 'pmd_save_pos.php')
-rw-r--r--pmd_save_pos.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/pmd_save_pos.php b/pmd_save_pos.php
index fb9d1ebd41..6fefe6327e 100644
--- a/pmd_save_pos.php
+++ b/pmd_save_pos.php
@@ -20,18 +20,18 @@ foreach ($t_x as $key => $value) {
$KEY = empty($IS_AJAX) ? urldecode($key) : $key; // table name decode (post PDF exp/imp)
list($DB,$TAB) = explode(".", $KEY);
PMA_query_as_controluser('DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['designer_coords']) . '
- WHERE `db_name` = \'' . PMA_sqlAddslashes($DB) . '\'
- AND `table_name` = \'' . PMA_sqlAddslashes($TAB) . '\'', true, PMA_DBI_QUERY_STORE);
+ WHERE `db_name` = \'' . PMA_sqlAddSlashes($DB) . '\'
+ AND `table_name` = \'' . PMA_sqlAddSlashes($TAB) . '\'', true, PMA_DBI_QUERY_STORE);
PMA_query_as_controluser('INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['designer_coords']) . '
(db_name, table_name, x, y, v, h)
VALUES ('
- . '\'' . PMA_sqlAddslashes($DB) . '\', '
- . '\'' . PMA_sqlAddslashes($TAB) . '\', '
- . '\'' . PMA_sqlAddslashes($t_x[$key]) . '\', '
- . '\'' . PMA_sqlAddslashes($t_y[$key]) . '\', '
- . '\'' . PMA_sqlAddslashes($t_v[$key]) . '\', '
- . '\'' . PMA_sqlAddslashes($t_h[$key]) . '\''
+ . '\'' . PMA_sqlAddSlashes($DB) . '\', '
+ . '\'' . PMA_sqlAddSlashes($TAB) . '\', '
+ . '\'' . PMA_sqlAddSlashes($t_x[$key]) . '\', '
+ . '\'' . PMA_sqlAddSlashes($t_y[$key]) . '\', '
+ . '\'' . PMA_sqlAddSlashes($t_v[$key]) . '\', '
+ . '\'' . PMA_sqlAddSlashes($t_h[$key]) . '\''
. ')', true, PMA_DBI_QUERY_STORE);
}
//----------------------------------------------------------------------------