summaryrefslogtreecommitdiffstats
path: root/system/init
diff options
context:
space:
mode:
Diffstat (limited to 'system/init')
-rw-r--r--system/init/init_calendar.php1
-rw-r--r--system/init/init_xmlrpcs.php6
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