summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Bridge.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Bridge.php b/src/Bridge.php
index 1e37910..98667ed 100644
--- a/src/Bridge.php
+++ b/src/Bridge.php
@@ -16,7 +16,7 @@ class Bridge {
$sql = 'SELECT post_id FROM posts ' .
'WHERE message_id = ' . $this->db->quote($messageId);
- $row = get_exactly_one_row($sql);
+ $row = $this->get_exactly_one_row($sql);
return $row['post_id'];
}
@@ -24,7 +24,7 @@ class Bridge {
$sql = 'SELECT message_id FROM posts ' .
'WHERE post_id = ' . $this->db->quote($postId);
- $row = get_exactly_one_row($sql);
+ $row = $this->get_exactly_one_row($sql);
return $row['message_id'];
}
@@ -49,7 +49,7 @@ class Bridge {
$sql = 'SELECT forum_id FROM forums ' .
'WHERE list_name = ' . $this->db->quote($list);
- $row = get_exactly_one_row($sql);
+ $row = $this->get_exactly_one_row($sql);
return $row['forum_id'];
}