diff options
| author | spiderr <spider@viovio.com> | 2012-05-10 19:53:39 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2012-05-10 19:53:39 -0400 |
| commit | 6300e6cb9b5188fdb498abea1273684c70a0b7a9 (patch) | |
| tree | a822faa6ce2b964102641a6f07b7519c36f3933e /BitInstaller.php | |
| parent | ccebfee20c1c21631decb810cc11623bc30242d6 (diff) | |
| download | install-6300e6cb9b5188fdb498abea1273684c70a0b7a9.tar.gz install-6300e6cb9b5188fdb498abea1273684c70a0b7a9.tar.bz2 install-6300e6cb9b5188fdb498abea1273684c70a0b7a9.zip | |
replace all PHP4 style calls to BitSystem base constructors with parent::__construct()
Diffstat (limited to 'BitInstaller.php')
| -rw-r--r-- | BitInstaller.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BitInstaller.php b/BitInstaller.php index 680e3c7..38f9a94 100644 --- a/BitInstaller.php +++ b/BitInstaller.php @@ -30,7 +30,7 @@ class BitInstaller extends BitSystem { * @access public */ function BitInstaller() { - BitSystem::BitSystem(); + parent::__construct(); $this->getWebServerUid(); } @@ -610,7 +610,7 @@ function check_session_save_path() { } if( $errors ) { - $save_path = BitSystem::tempdir(); + $save_path = static::tempdir(); if (is_dir($save_path) && bw_is_writeable($save_path)) { ini_set('session.save_path', $save_path); |
