aboutsummaryrefslogtreecommitdiff
path: root/mod/notifications/views/default/forms/notificationsettings/groupsave.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-29 01:50:59 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-29 01:50:59 +0000
commit9f856937caf1ac2cab02fbe5aa73b0c3bb84f84c (patch)
tree8c614cd0a131bcf7b46ebafce2a76711a9212b3f /mod/notifications/views/default/forms/notificationsettings/groupsave.php
parent7c1a133ad9f316d2e3b96b12eaec379c25e5d22e (diff)
downloadelgg-9f856937caf1ac2cab02fbe5aa73b0c3bb84f84c.tar.gz
elgg-9f856937caf1ac2cab02fbe5aa73b0c3bb84f84c.tar.bz2
Fixes #3266 let the settings pages have breadcrumbs
git-svn-id: http://code.elgg.org/elgg/trunk@8878 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/notifications/views/default/forms/notificationsettings/groupsave.php')
-rw-r--r--mod/notifications/views/default/forms/notificationsettings/groupsave.php12
1 files changed, 10 insertions, 2 deletions
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;
</table>
<?php
}
+ echo '<div class="mtm">';
+ echo elgg_view('input/submit', array('value' => elgg_echo('save')));
+ echo '</div>';
+
?>
- <input type="submit" value="<?php echo elgg_echo('save'); ?>" />
</div>
</div>