diff options
| author | spiderr <spider@viovio.com> | 2012-05-06 17:35:20 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2012-05-06 17:35:20 -0400 |
| commit | f48d5a812f00629baa236451485cacb3a1f94aa5 (patch) | |
| tree | 7eec2959e8bd2110c85881e823b08f25bf577bb5 | |
| parent | 3ea376e47f7f075f278d8ed9a9a21e885d9993c7 (diff) | |
| download | calendar-f48d5a812f00629baa236451485cacb3a1f94aa5.tar.gz calendar-f48d5a812f00629baa236451485cacb3a1f94aa5.tar.bz2 calendar-f48d5a812f00629baa236451485cacb3a1f94aa5.zip | |
replace all PHP4 style calls to LibertyContent base constructors with parent::__construct()
| -rw-r--r-- | Calendar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Calendar.php b/Calendar.php index ebcf966..1cfe1f6 100644 --- a/Calendar.php +++ b/Calendar.php @@ -23,7 +23,7 @@ class Calendar extends LibertyContent { var $display_offset; function Calendar() { - LibertyContent::LibertyContent(); + parent::__construct(); global $gBitUser; $this->mDate = new BitDate(0); $this->display_offset = $this->mDate->get_display_offset(); |
