summaryrefslogtreecommitdiff
path: root/src/Bridge.php
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-13 21:53:07 +0000
committeruckelman <uckelman@nomic.net>2010-04-13 21:53:07 +0000
commitc5292f0cd7742b1cbcb8ef6c9438ef6eb1549244 (patch)
tree3b0f2cbe3bf7f6ce5ea5b8ce0585ee13ac89981b /src/Bridge.php
parent43506cef16623cf3c31ce5b4e0501f0e2d7b9864 (diff)
Don't need to quote post_id.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6707 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/Bridge.php')
-rw-r--r--src/Bridge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bridge.php b/src/Bridge.php
index 8ea229a..8b04f03 100644
--- a/src/Bridge.php
+++ b/src/Bridge.php
@@ -27,7 +27,7 @@ class Bridge {
throw_if_null($postId);
$sql = 'SELECT message_id FROM posts ' .
- 'WHERE post_id = ' . $this->db->quote($postId);
+ 'WHERE post_id = ' . $postId;
$row = $this->get_exactly_one_row($sql);
return $row ? $row['message_id'] : false;