diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-11-10 22:26:43 +0100 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-11-10 22:26:43 +0100 |
commit | a926328583e7ffdaaac7daf2f87810d842423f21 (patch) | |
tree | 7e4b62b3029de2a7273ab94d30148a60e496ada7 /system/libraries/Xmlrpcs.php | |
parent | 579fde36e4f8cc294edec4fd4eefe06f4df09dda (diff) |
Changing all class constructors to __construct()
Diffstat (limited to 'system/libraries/Xmlrpcs.php')
-rw-r--r-- | system/libraries/Xmlrpcs.php | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/system/libraries/Xmlrpcs.php b/system/libraries/Xmlrpcs.php index 14e10d22c..555ec7495 100644 --- a/system/libraries/Xmlrpcs.php +++ b/system/libraries/Xmlrpcs.php @@ -43,14 +43,12 @@ class CI_Xmlrpcs extends CI_Xmlrpc var $object = FALSE; - - //------------------------------------- - // Constructor, more or less - //------------------------------------- - - function CI_Xmlrpcs($config=array()) + /** + * Constructor + */ + public function __construct($config=array()) { - parent::CI_Xmlrpc(); + parent::__construct(); $this->set_system_methods(); if (isset($config['functions']) && is_array($config['functions'])) |