diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-10 14:48:29 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-10 14:48:29 +0000 |
commit | 5db7ae26689669479b327cd69b5c72ada3d819b9 (patch) | |
tree | 74b5beb5ee8e75df4d16e8fb0a2aa029644f49a5 /mod/profile | |
parent | 005666d19b54d5aef654f96fd7b555d954cf425f (diff) | |
download | elgg-5db7ae26689669479b327cd69b5c72ada3d819b9.tar.gz elgg-5db7ae26689669479b327cd69b5c72ada3d819b9.tar.bz2 |
register_event_handler and trigger_event have been renamed to register_elgg_event_handler and trigger_elgg_event respectively.
git-svn-id: https://code.elgg.org/elgg/trunk@848 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile')
-rw-r--r-- | mod/profile/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/start.php b/mod/profile/start.php index 0c0272bbe..ddf136425 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -109,7 +109,7 @@ }
// Make sure the profile initialisation function is called on initialisation
- register_event_handler('init','system','profile_init',1);
+ register_elgg_event_handler('init','system','profile_init',1);
// Register actions
global $CONFIG;
|