diff options
| author | spiderr <spider@viovio.com> | 2012-05-06 23:31:16 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2012-05-06 23:31:16 -0400 |
| commit | ace1e2cc8a30e7b3fec955a1992e94b328a36361 (patch) | |
| tree | 7207671a036e09da5871ffd2557890ae23b92212 | |
| parent | b17abdea398acff5a8b406750006075c52de0d5c (diff) | |
| download | boards-ace1e2cc8a30e7b3fec955a1992e94b328a36361.tar.gz boards-ace1e2cc8a30e7b3fec955a1992e94b328a36361.tar.bz2 boards-ace1e2cc8a30e7b3fec955a1992e94b328a36361.zip | |
replace all PHP4 style calls to LibertyComment base constructors with parent::__construct()
| -rw-r--r-- | BitBoardPost.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BitBoardPost.php b/BitBoardPost.php index e3a573b..fa5ca40 100644 --- a/BitBoardPost.php +++ b/BitBoardPost.php @@ -25,7 +25,7 @@ class BitBoardPost extends LibertyComment { * During initialisation, be sure to call our base constructors **/ function BitBoardPost($pCommentId = NULL, $pContentId = NULL, $pInfo = NULL) { - LibertyComment::LibertyComment($pCommentId,$pContentId,$pInfo); + parent::__construct($pCommentId,$pContentId,$pInfo); // Permission setup $this->mViewContentPerm = 'p_boards_read'; |
