aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2015-01-20 23:43:57 +0100
committerTristan Darricau <github@nicofuma.fr>2015-01-20 23:43:57 +0100
commitf6057c5eabfa33aedf4183cd1327203ed8cce280 (patch)
treed2fa0684669a2a0533afe9ed60c0e393315b2c5e /phpBB
parent9334100cb3f9ee2ecf614308ddf8502c62a243ac (diff)
parented6b8f84ad07a8aaa88124bb29e26f9042c3f552 (diff)
downloadforums-f6057c5eabfa33aedf4183cd1327203ed8cce280.tar
forums-f6057c5eabfa33aedf4183cd1327203ed8cce280.tar.gz
forums-f6057c5eabfa33aedf4183cd1327203ed8cce280.tar.bz2
forums-f6057c5eabfa33aedf4183cd1327203ed8cce280.tar.xz
forums-f6057c5eabfa33aedf4183cd1327203ed8cce280.zip
Merge pull request #3315 from nickvergessen/ticket/13530
[ticket/13530] Fix undefined variables * nickvergessen/ticket/13530: [ticket/13530] Fix undefined variables
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php b/phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php
index c3e887841f..003ccf8f18 100644
--- a/phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php
+++ b/phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php
@@ -110,7 +110,7 @@ class release_3_0_5_rc1 extends container_aware_migration
// Select auth_option_ids... the largest id will be preserved
$sql = 'SELECT auth_option_id
FROM ' . ACL_OPTIONS_TABLE . "
- WHERE auth_option = '" . $db->sql_escape($option) . "'
+ WHERE auth_option = '" . $this->db->sql_escape($option) . "'
ORDER BY auth_option_id DESC";
// sql_query_limit not possible here, due to bug in postgresql layer
$result = $this->db->sql_query($sql);