diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-07 07:34:38 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-07 07:34:38 -0500 |
commit | 951175041f60d3368407407de1b1280e453668db (patch) | |
tree | 2ee360b0f9f0428e8494f661356021aa75d30727 /mod | |
parent | a78b080fc2821fc8a6f9c91b19ee9ea4da55239e (diff) | |
download | elgg-951175041f60d3368407407de1b1280e453668db.tar.gz elgg-951175041f60d3368407407de1b1280e453668db.tar.bz2 |
removing deprecated functions from custom_index plugin
Diffstat (limited to 'mod')
-rw-r--r-- | mod/custom_index/start.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/custom_index/start.php b/mod/custom_index/start.php index 857798798..48d03f27b 100644 --- a/mod/custom_index/start.php +++ b/mod/custom_index/start.php @@ -4,7 +4,7 @@ * */ -register_elgg_event_handler('init', 'system', 'custom_index_init'); +elgg_register_event_handler('init', 'system', 'custom_index_init'); function custom_index_init() { @@ -12,7 +12,7 @@ function custom_index_init() { elgg_extend_view('css/elgg', 'custom_index/css'); // Replace the default index page - register_plugin_hook('index', 'system', 'custom_index'); + elgg_register_plugin_hook_handler('index', 'system', 'custom_index'); } function custom_index($hook, $type, $return, $params) { |