aboutsummaryrefslogtreecommitdiff
path: root/mod/notifications/views/default/forms/notificationsettings/groupsave.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 16:40:05 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 16:40:05 +0000
commite036de6ceab5f57b0f502b8400ab05e32e96562b (patch)
treefa67b394866458609f5d92248eaebb2a9cca943e /mod/notifications/views/default/forms/notificationsettings/groupsave.php
parente65db3fbab88f0bd98c2e5750f09d139837fdc0e (diff)
downloadelgg-e036de6ceab5f57b0f502b8400ab05e32e96562b.tar.gz
elgg-e036de6ceab5f57b0f502b8400ab05e32e96562b.tar.bz2
updated the plugins that have already been updated to 1.8 html/css to use divs rather than p tags in forms
git-svn-id: http://code.elgg.org/elgg/trunk@8163 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.php43
1 files changed, 19 insertions, 24 deletions
diff --git a/mod/notifications/views/default/forms/notificationsettings/groupsave.php b/mod/notifications/views/default/forms/notificationsettings/groupsave.php
index 632e34a54..a38fe48d0 100644
--- a/mod/notifications/views/default/forms/notificationsettings/groupsave.php
+++ b/mod/notifications/views/default/forms/notificationsettings/groupsave.php
@@ -6,7 +6,7 @@
*/
global $NOTIFICATION_HANDLERS;
-foreach($NOTIFICATION_HANDLERS as $method => $foo) {
+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));
$tmparray = array();
if ($subsbig[$method]) {
@@ -24,22 +24,19 @@ foreach($NOTIFICATION_HANDLERS as $method => $foo) {
<?php
echo elgg_view('notifications/subscriptions/jsfuncs',$vars);
?>
-
- <p>
+ <div>
<?php
-
echo elgg_echo('notifications:subscriptions:groups:description');
-
?>
- </p>
+ </div>
<?php
if (isset($vars['groups']) && !empty($vars['groups'])) {
?>
- <table id="notificationstable" cellspacing="0" cellpadding="4" border="0" width="100%">
- <tr>
- <td>&nbsp;</td>
+ <table id="notificationstable" cellspacing="0" cellpadding="4" width="100%">
+ <tr>
+ <td>&nbsp;</td>
<?php
$i = 0;
@@ -48,13 +45,13 @@ if (isset($vars['groups']) && !empty($vars['groups'])) {
echo "<td class='spacercolumn'>&nbsp;</td>";
}
?>
- <td class="<?php echo $method; ?>togglefield"><?php echo elgg_echo('notification:method:'.$method); ?></td>
+ <td class="<?php echo $method; ?>togglefield"><?php echo elgg_echo('notification:method:'.$method); ?></td>
<?php
$i++;
}
?>
- <td>&nbsp;</td>
- </tr>
+ <td>&nbsp;</td>
+ </tr>
<?php
foreach($vars['groups'] as $group) {
@@ -79,24 +76,22 @@ END;
}
?>
- <tr>
- <td class="namefield">
- <p>
+ <tr>
+ <td class="namefield">
+ <div>
<?php echo $group->name; ?>
- </p>
- </td>
-<?php
- echo $fields;
-?>
- <td>&nbsp;</td>
- </tr>
+ </div>
+ </td>
+ <?php echo $fields; ?>
+ <td>&nbsp;</td>
+ </tr>
<?php
}
?>
- </table>
+ </table>
<?php
}
?>
- <input type="submit" value="<?php echo elgg_echo('save'); ?>" />
+ <input type="submit" value="<?php echo elgg_echo('save'); ?>" />
</div>
</div>