From 227c44ce079de309cf054899c15ec06b075d7940 Mon Sep 17 00:00:00 2001 From: uckelman Date: Tue, 13 Apr 2010 20:29:30 +0000 Subject: PHP apparently doesn't support function overloading. Bah! git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6701 67b53d14-2c14-4ace-a08f-0dab2b34000c --- src/Bridge.php | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'src/Bridge.php') diff --git a/src/Bridge.php b/src/Bridge.php index 9d59564..8ea229a 100644 --- a/src/Bridge.php +++ b/src/Bridge.php @@ -71,27 +71,13 @@ class Bridge { return $rows; } - public function registerMessage($messageId, $inReplyTo, $references) { - throw_if_null($messageId); - - $sql = 'INSERT IGNORE INTO posts ' . - '(message_id, in_reply_to, refs) ' . - 'VALUES (' . $this->db->quote($messageId) . ', ' - . $this->quote($inReplyTo) . ', ' - . $this->quote($references) . ')'; - - $count = $this->db->exec($sql); - return $count == 1; - } - public function registerMessage($postId, $messageId, $inReplyTo, $references) { - throw_if_null($postId); throw_if_null($messageId); $sql = 'INSERT IGNORE INTO posts ' . '(post_id, message_id, in_reply_to, refs) ' . - 'VALUES (' . $postId . ', ' + 'VALUES (' . ($postId === null ? 'NULL' : $postId) . ', ' . $this->db->quote($messageId) . ', ' . $this->quote($inReplyTo) . ', ' . $this->quote($references) . ')'; -- cgit v1.2.1