diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-05 17:06:35 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-05 17:06:35 +0000 |
commit | 7dbc5cd43f911a381011f4d220a8490f3049c27d (patch) | |
tree | 3c9e6a35be9fd140bcfcaf407e9c953f578b1a1c /mod | |
parent | f98e97d304f47243d367c66a740ad653912ea57d (diff) | |
download | elgg-7dbc5cd43f911a381011f4d220a8490f3049c27d.tar.gz elgg-7dbc5cd43f911a381011f4d220a8490f3049c27d.tar.bz2 |
Fixes for metadata and for the run order.
git-svn-id: https://code.elgg.org/elgg/trunk@817 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profile/start.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/profile/start.php b/mod/profile/start.php index 86faded71..0c0272bbe 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -116,5 +116,9 @@ register_action("profile/edit",false,$CONFIG->pluginspath . "profile/actions/edit.php");
register_action("profile/iconupload",false,$CONFIG->pluginspath . "profile/actions/iconupload.php");
+ // Define widgets for use in this context
+ if (is_callable('use_widgets')) {
+ use_widgets('profile');
+ }
?>
\ No newline at end of file |