diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-24 01:27:47 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-24 01:27:47 +0000 |
commit | c667ce609dc3c1f9f071e39293f8c176d3e1c5dc (patch) | |
tree | 1ec44df08297b396809af545dcf9568ba7c27aff /mod/notifications | |
parent | 64547b21f0e0cb4efc55212a5a6ae92824b274aa (diff) | |
download | elgg-c667ce609dc3c1f9f071e39293f8c176d3e1c5dc.tar.gz elgg-c667ce609dc3c1f9f071e39293f8c176d3e1c5dc.tar.bz2 |
Refs #2997 switching from title to text for menu items
git-svn-id: http://code.elgg.org/elgg/trunk@8455 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/notifications')
-rw-r--r-- | mod/notifications/start.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/notifications/start.php b/mod/notifications/start.php index 1c12dbf63..13a21c420 100644 --- a/mod/notifications/start.php +++ b/mod/notifications/start.php @@ -69,7 +69,7 @@ function notifications_plugin_pagesetup() { $params = array( 'name' => '2_a_user_notify', - 'title' => elgg_echo('notifications:subscriptions:changesettings'), + 'text' => elgg_echo('notifications:subscriptions:changesettings'), 'url' => "pg/notifications/personal", ); elgg_register_menu_item('page', $params); @@ -77,7 +77,7 @@ function notifications_plugin_pagesetup() { if (elgg_is_active_plugin('groups')) { $params = array( 'name' => '2_group_notify', - 'title' => elgg_echo('notifications:subscriptions:changesettings:groups'), + 'text' => elgg_echo('notifications:subscriptions:changesettings:groups'), 'url' => "pg/notifications/group", ); elgg_register_menu_item('page', $params); |