diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-10 03:48:40 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-10 03:48:40 +0000 |
commit | 98f18b6fa309d6a68025699848a0dd5652ac75da (patch) | |
tree | 7ccb0e4e8bee57ca8fcc394db7fc06adde6ff1da /mod/profile/start.php | |
parent | 21ccb999e304af2fa54b7fb6009199eec218d1d1 (diff) | |
download | elgg-98f18b6fa309d6a68025699848a0dd5652ac75da.tar.gz elgg-98f18b6fa309d6a68025699848a0dd5652ac75da.tar.bz2 |
Fixed #3313: Removed the superfluous html_head/extend view from core. Anyone following trunk should extend page/elements/head instead
git-svn-id: http://code.elgg.org/elgg/trunk@8978 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 cc4c74fb2..d91b66371 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -29,7 +29,7 @@ function profile_init() { // Register a page handler, so we can have nice URLs elgg_register_page_handler('profile', 'profile_page_handler'); - elgg_extend_view('html_head/extend', 'profile/metatags'); + elgg_extend_view('page/elements/head', 'profile/metatags'); elgg_extend_view('css/elgg', 'profile/css'); elgg_extend_view('js/elgg', 'profile/js'); |