diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 15:35:14 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 15:35:14 +0000 |
commit | 078d930d12f450f32f1b7d1976e5d3fe0aa01808 (patch) | |
tree | 5fc29b3cde5c9f84902851739b907697dbd8b81d /mod/friends/start.php | |
parent | 95c79a67493521d2d9761fde60ccfbf2af48ce87 (diff) | |
download | elgg-078d930d12f450f32f1b7d1976e5d3fe0aa01808.tar.gz elgg-078d930d12f450f32f1b7d1976e5d3fe0aa01808.tar.bz2 |
Refs #472 not allowing widgets to be added if only single instance allowed
git-svn-id: http://code.elgg.org/elgg/trunk@7384 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/friends/start.php')
-rw-r--r-- | mod/friends/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/friends/start.php b/mod/friends/start.php index fe6a40c75..0da095b96 100644 --- a/mod/friends/start.php +++ b/mod/friends/start.php @@ -8,7 +8,7 @@ */ function friends_init() { - add_widget_type('friends', elgg_echo("friends"), elgg_echo('friends:widget:description')); + add_widget_type('friends', elgg_echo("friends"), elgg_echo('friends:widget:description'), 'profile'); } elgg_register_event_handler('init', 'system', 'friends_init'); |