diff options
| author | spiderr <spider@viovio.com> | 2012-05-05 19:46:41 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2012-05-05 19:46:41 -0400 |
| commit | 9fe33fd8a328ac768ea617df22b5ec4efcd33719 (patch) | |
| tree | 0c0be5c21cf98142ea5c0eab71c98a2eb3a612e8 | |
| parent | 68c51c94381c296e235fbdfbb4394f06b7684191 (diff) | |
| download | articles-9fe33fd8a328ac768ea617df22b5ec4efcd33719.tar.gz articles-9fe33fd8a328ac768ea617df22b5ec4efcd33719.tar.bz2 articles-9fe33fd8a328ac768ea617df22b5ec4efcd33719.zip | |
replace all calls to ::BitBase() with parent::__construct()
| -rw-r--r-- | BitArticleTopic.php | 2 | ||||
| -rw-r--r-- | BitArticleType.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/BitArticleTopic.php b/BitArticleTopic.php index 6a0dfb6..6c8ea39 100644 --- a/BitArticleTopic.php +++ b/BitArticleTopic.php @@ -23,7 +23,7 @@ class BitArticleTopic extends BitBase { function BitArticleTopic($iTopicId = NULL, $iTopicName = NULL) { $this->mTopicId = NULL; - BitBase::BitBase(); + parent::__construct(); if ($iTopicId || $iTopicName) { $this->loadTopic(array('topic_id'=>$iTopicId, 'topic_name'=>$iTopicName)); } diff --git a/BitArticleType.php b/BitArticleType.php index 9d6ed04..a93f082 100644 --- a/BitArticleType.php +++ b/BitArticleType.php @@ -23,7 +23,7 @@ class BitArticleType extends BitBase function BitArticleType($iTypeId = NULL) { $this->mTypeId = NULL; - BitBase::BitBase(); + parent::__construct(); if ($iTypeId) { $this->loadType($iTypeId); } |
