diff options
author | admin <devnull@localhost> | 2006-09-26 05:52:45 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-26 05:52:45 +0200 |
commit | e79dc7130a0003a07833609487b8ebb5ebcf31c8 (patch) | |
tree | 8400c41761ddcd7a9338637eefc9429d501d87ff /system/init | |
parent | 30c3b9709a12b7346c7057e656a491ffb9168f55 (diff) |
Diffstat (limited to 'system/init')
-rw-r--r-- | system/init/init_calendar.php | 1 | ||||
-rw-r--r-- | system/init/init_xmlrpcs.php | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/system/init/init_calendar.php b/system/init/init_calendar.php index 5cf663725..390b44007 100644 --- a/system/init/init_calendar.php +++ b/system/init/init_calendar.php @@ -12,7 +12,6 @@ if ( ! class_exists('CI_Calendar')) } $obj =& get_instance(); - $obj->calendar = new CI_Calendar(); $obj->ci_is_loaded[] = 'calendar'; diff --git a/system/init/init_xmlrpcs.php b/system/init/init_xmlrpcs.php index 7566e3826..a900894aa 100644 --- a/system/init/init_xmlrpcs.php +++ b/system/init/init_xmlrpcs.php @@ -18,10 +18,16 @@ if ( ! class_exists('CI_XML_RPC_Server')) require_once(BASEPATH.'libraries/Xmlrpcs'.EXT); } + + +// INITIALIZE THE CLASS --------------------------------------------------- + $obj =& get_instance(); $obj->xmlrpc = new CI_XML_RPC(); $obj->xmlrpcs = new CI_XML_RPC_Server($config); $obj->ci_is_loaded[] = 'xmlrpc'; $obj->ci_is_loaded[] = 'xmlrpcs'; +// ------------------------------------------------------------------------ + ?>
\ No newline at end of file |