aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-01-10 15:14:58 +0100
committerJoas Schilling <nickvergessen@gmx.de>2015-01-10 15:14:58 +0100
commitf756632185c696c31cc6dfcf0ddfa092b6faf118 (patch)
tree50096f7d9eb7a3877daaa742773f386061823abc /phpBB/phpbb/db
parentc28ef9afddab227f28b8887909ca27d434db83e2 (diff)
downloadforums-f756632185c696c31cc6dfcf0ddfa092b6faf118.tar
forums-f756632185c696c31cc6dfcf0ddfa092b6faf118.tar.gz
forums-f756632185c696c31cc6dfcf0ddfa092b6faf118.tar.bz2
forums-f756632185c696c31cc6dfcf0ddfa092b6faf118.tar.xz
forums-f756632185c696c31cc6dfcf0ddfa092b6faf118.zip
[ticket/13486] Fix typo in method name
PHPBB3-13486
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v31x/profilefield_remove_underscore_from_alpha.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/profilefield_remove_underscore_from_alpha.php b/phpBB/phpbb/db/migration/data/v31x/profilefield_remove_underscore_from_alpha.php
index 1f25d239a6..60491f8de8 100644
--- a/phpBB/phpbb/db/migration/data/v31x/profilefield_remove_underscore_from_alpha.php
+++ b/phpBB/phpbb/db/migration/data/v31x/profilefield_remove_underscore_from_alpha.php
@@ -40,8 +40,8 @@ class profilefield_remove_underscore_from_alpha extends \phpbb\db\migration\migr
public function update_validation_rule($old_validation, $new_validation)
{
$sql = 'UPDATE ' . PROFILE_FIELDS_TABLE . "
- SET field_validation = '" . $this->db->sql_escpape($new_validation) . "'
- WHERE field_validation = '" . $this->db->sql_escpape($old_validation) . "'";
+ SET field_validation = '" . $this->db->sql_escape($new_validation) . "'
+ WHERE field_validation = '" . $this->db->sql_escape($old_validation) . "'";
$this->db->sql_query($sql);
}
}