diff options
| author | spiderr <spider@viovio.com> | 2012-05-06 17:11:49 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2012-05-06 17:11:49 -0400 |
| commit | 8c5fd59a9b75a0d551256d7ff8a5741eb26d06af (patch) | |
| tree | 6163285bedd35116180ad1f56b49a86e5ceb5a20 | |
| parent | 41740a5b3c1a1d8242a84db6f0d0e36d1d2429e2 (diff) | |
| download | boards-8c5fd59a9b75a0d551256d7ff8a5741eb26d06af.tar.gz boards-8c5fd59a9b75a0d551256d7ff8a5741eb26d06af.tar.bz2 boards-8c5fd59a9b75a0d551256d7ff8a5741eb26d06af.zip | |
replace all PHP4 style calls to LibertyMime base constructors with parent::__construct()
| -rw-r--r-- | BitBoard.php | 2 | ||||
| -rw-r--r-- | BitBoardTopic.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/BitBoard.php b/BitBoard.php index 3eba1d2..8a3e9b7 100644 --- a/BitBoard.php +++ b/BitBoard.php @@ -35,7 +35,7 @@ class BitBoard extends LibertyMime { * During initialisation, be sure to call our base constructors **/ function BitBoard( $pBitBoardId=NULL, $pContentId=NULL ) { - LibertyMime::LibertyMime(); + parent::__construct(); $this->mBitBoardId = $pBitBoardId; $this->mContentId = $pContentId; $this->mContentTypeGuid = BITBOARD_CONTENT_TYPE_GUID; diff --git a/BitBoardTopic.php b/BitBoardTopic.php index c9097ce..57865ca 100644 --- a/BitBoardTopic.php +++ b/BitBoardTopic.php @@ -43,7 +43,7 @@ class BitBoardTopic extends LibertyMime { * During initialisation, be sure to call our base constructors **/ function BitBoardTopic( $pRootId=NULL ) { - LibertyMime::LibertyMime(); + parent::__construct(); $this->mRootId = $pRootId; // Permission setup |
