diff options
author | uckelman <uckelman@nomic.net> | 2010-04-11 13:56:34 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-11 13:56:34 +0000 |
commit | 366d40e006d245180747522e909150131cb34a61 (patch) | |
tree | 4bd7a8aeaeb13991baba620e2542ebf2b6e4693d /src | |
parent | 386872f4367e9dedb5664839d451f956626d6a80 (diff) |
Missing $this.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6646 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src')
-rw-r--r-- | src/PhpBB3.php | 2 |
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; } |