summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/PhpBB3.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PhpBB3.php b/src/PhpBB3.php
index d8b9ba4..0adf6d1 100644
--- a/src/PhpBB3.php
+++ b/src/PhpBB3.php
@@ -44,7 +44,7 @@ class PhpBB3 {
$sql = 'SELECT topic_id, forum_id FROM ' . POSTS_TABLE .
' WHERE post_id = "' . $db->sql_escape($post_id) . '"';
- $row = get_exactly_one_row($sql);
+ $row = $this->get_exactly_one_row($sql);
return $row;
}