diff options
Diffstat (limited to 'BitBoardPost.php')
| -rw-r--r-- | BitBoardPost.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BitBoardPost.php b/BitBoardPost.php index 07addde..c40d4cb 100644 --- a/BitBoardPost.php +++ b/BitBoardPost.php @@ -115,10 +115,10 @@ class BitBoardPost extends LibertyComment { function expunge() { $ret = FALSE; if( $this->isValid() ) { - $this->mDb->StartTrans(); + $this->StartTrans(); // parent actually has deletion of rows in boards for constraint reasons if( parent::expunge() ) { - $this->mDb->CompleteTrans(); + $this->CompleteTrans(); $ret = TRUE; } else { $this->mDb->RollbackTrans(); |
