diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-16 20:56:25 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-16 20:56:25 +0000 |
commit | 851b6f87d426ff60d21eeafd6d63ff241bb18b82 (patch) | |
tree | 6157f80d1f8ef58e208754ea7323f2e35b1bb743 /mod/profile/start.php | |
parent | 00f085d2da3f7fc260597e9bd7493a9cb99115fc (diff) | |
download | elgg-851b6f87d426ff60d21eeafd6d63ff241bb18b82.tar.gz elgg-851b6f87d426ff60d21eeafd6d63ff241bb18b82.tar.bz2 |
Updated register_entity_url_handler => elgg_* in plugins. Used this regex: ([^_a-z])register_entity_url_handler\((.*),(.*,.*)\);
git-svn-id: http://code.elgg.org/elgg/trunk@8263 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/start.php')
-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 05db3ce86..67be35e7e 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -14,7 +14,7 @@ function profile_init() { // Register a URL handler for users - this means that profile_url() // will dictate the URL for all ElggUser objects - register_entity_url_handler('profile_url', 'user', 'all'); + elgg_register_entity_url_handler('user', 'all', 'profile_url'); // Metadata on users needs to be independent register_metadata_as_independent('user'); |