diff options
| -rw-r--r-- | BitBoard.php | 2 | ||||
| -rw-r--r-- | BitBoardPost.php | 2 | ||||
| -rw-r--r-- | BitBoardTopic.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/BitBoard.php b/BitBoard.php index 6c9a7ce..add019f 100644 --- a/BitBoard.php +++ b/BitBoard.php @@ -34,7 +34,7 @@ class BitBoard extends LibertyMime { /** * During initialisation, be sure to call our base constructors **/ - function BitBoard( $pBitBoardId=NULL, $pContentId=NULL ) { + function __construct( $pBitBoardId=NULL, $pContentId=NULL ) { parent::__construct(); $this->mBitBoardId = $pBitBoardId; $this->mContentId = $pContentId; diff --git a/BitBoardPost.php b/BitBoardPost.php index c40d4cb..fc624d4 100644 --- a/BitBoardPost.php +++ b/BitBoardPost.php @@ -24,7 +24,7 @@ class BitBoardPost extends LibertyComment { /** * During initialisation, be sure to call our base constructors */ - function BitBoardPost($pCommentId = NULL, $pContentId = NULL, $pInfo = NULL) { + function __construct($pCommentId = NULL, $pContentId = NULL, $pInfo = NULL) { parent::__construct($pCommentId,$pContentId,$pInfo); // Permission setup diff --git a/BitBoardTopic.php b/BitBoardTopic.php index ce0deaf..de511ca 100644 --- a/BitBoardTopic.php +++ b/BitBoardTopic.php @@ -42,7 +42,7 @@ class BitBoardTopic extends LibertyMime { /** * During initialisation, be sure to call our base constructors **/ - function BitBoardTopic( $pRootId=NULL ) { + function __construct( $pRootId=NULL ) { parent::__construct(); $this->mRootId = $pRootId; |
