From 9f856937caf1ac2cab02fbe5aa73b0c3bb84f84c Mon Sep 17 00:00:00 2001 From: cash Date: Tue, 29 Mar 2011 01:50:59 +0000 Subject: Fixes #3266 let the settings pages have breadcrumbs git-svn-id: http://code.elgg.org/elgg/trunk@8878 36083f99-b078-4883-b0ff-0f9b5a30f544 --- .../views/default/forms/notificationsettings/groupsave.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'mod/notifications/views/default/forms/notificationsettings/groupsave.php') diff --git a/mod/notifications/views/default/forms/notificationsettings/groupsave.php b/mod/notifications/views/default/forms/notificationsettings/groupsave.php index a38fe48d0..2bf0d9628 100644 --- a/mod/notifications/views/default/forms/notificationsettings/groupsave.php +++ b/mod/notifications/views/default/forms/notificationsettings/groupsave.php @@ -7,7 +7,12 @@ global $NOTIFICATION_HANDLERS; foreach ($NOTIFICATION_HANDLERS as $method => $foo) { - $subsbig[$method] = elgg_get_entities_from_relationship(array('relationship' => 'notify' . $method, 'relationship_guid' => elgg_get_logged_in_user_guid(), 'types' => 'group', 'limit' => 99999)); + $subsbig[$method] = elgg_get_entities_from_relationship(array( + 'relationship' => 'notify' . $method, + 'relationship_guid' => elgg_get_logged_in_user_guid(), + 'types' => 'group', + 'limit' => 99999, + )); $tmparray = array(); if ($subsbig[$method]) { foreach($subsbig[$method] as $tmpent) { @@ -91,7 +96,10 @@ END; '; + echo elgg_view('input/submit', array('value' => elgg_echo('save'))); + echo ''; + ?> - -- cgit v1.2.3