summaryrefslogtreecommitdiff
path: root/src/Bridge.php
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-11 13:41:38 +0000
committeruckelman <uckelman@nomic.net>2010-04-11 13:41:38 +0000
commiteec95b8ff65316efd6b294898cf752fbfeb81e79 (patch)
tree3164874319d37a4ea95d6423f4474b3c5c2f7aa2 /src/Bridge.php
parent29b42706b95f767cddcc8e7620a0a7070f4d289b (diff)
Should pass tests now.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6644 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/Bridge.php')
-rw-r--r--src/Bridge.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Bridge.php b/src/Bridge.php
index 3b9b1b4..9dfd758 100644
--- a/src/Bridge.php
+++ b/src/Bridge.php
@@ -29,6 +29,10 @@ class Bridge {
}
public function setPostId($messageId, $postId) {
+ if ($messageId === null) {
+ trigger_error('message id is null', E_USER_ERROR);
+ }
+
$sql = 'UPDATE posts SET ' .
'post_id = ' . $postId . ' ' .
'WHERE message_id = ' . $this->db->quote($messageId);