diff options
Diffstat (limited to 'BitBoardTopic.php')
| -rw-r--r-- | BitBoardTopic.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BitBoardTopic.php b/BitBoardTopic.php index 9fa73f7..ce0deaf 100644 --- a/BitBoardTopic.php +++ b/BitBoardTopic.php @@ -263,7 +263,7 @@ class BitBoardTopic extends LibertyMime { function moveTo($board_id) { // start transaction - $this->mDb->StartTrans(); + $this->StartTrans(); // create a new comment letting people know it has beem moved $lcom = new LibertyComment(); @@ -291,7 +291,7 @@ class BitBoardTopic extends LibertyMime { $result = $this->mDb->query( $query, array( $board_id ) ); // end transaction - $this->mDb->CompleteTrans(); + $this->CompleteTrans(); return TRUE; } |
