diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-11 14:23:55 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-11 14:23:55 +0000 |
commit | 1f0b755db0b82713a57e48c4c4e7c08d429c859d (patch) | |
tree | a250672ed10bd542b880e4c5e27daedaa2406665 /views/default/notifications | |
parent | 4873cf7c4bb484ba8dfbe12e840402e3edd7c310 (diff) | |
download | elgg-1f0b755db0b82713a57e48c4c4e7c08d429c859d.tar.gz elgg-1f0b755db0b82713a57e48c4c4e7c08d429c859d.tar.bz2 |
user settings tweaked
git-svn-id: https://code.elgg.org/elgg/trunk@1829 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/notifications')
-rw-r--r-- | views/default/notifications/settings/usersettings.php | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/views/default/notifications/settings/usersettings.php b/views/default/notifications/settings/usersettings.php index 17f99dd6b..4bf43e254 100644 --- a/views/default/notifications/settings/usersettings.php +++ b/views/default/notifications/settings/usersettings.php @@ -1,31 +1,31 @@ -<?php - /** - * User settings for notifications. - * - * @package Elgg - * @subpackage Core - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider Ltd - * @copyright Curverider Ltd 2008 - * @link http://elgg.org/ - */ - - global $NOTIFICATION_HANDLERS; - $notification_settings = get_user_notification_settings(page_owner()); -?> - <h2><?php echo elgg_echo('notifications:usersettings'); ?></h2> - - <p><?php echo elgg_echo('notifications:methods'); ?> - - <table> -<?php - // Loop through options - foreach ($NOTIFICATION_HANDLERS as $k => $v) - { -?> - <tr> - <td><?php echo $k; ?>: </td> - +<?php
+ /**
+ * User settings for notifications.
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ global $NOTIFICATION_HANDLERS;
+ $notification_settings = get_user_notification_settings(page_owner());
+?>
+ <h3><?php echo elgg_echo('notifications:usersettings'); ?></h3>
+
+ <p><?php echo elgg_echo('notifications:methods'); ?>
+
+ <table>
+<?php
+ // Loop through options
+ foreach ($NOTIFICATION_HANDLERS as $k => $v)
+ {
+?>
+ <tr>
+ <td><?php echo $k; ?>: </td>
+
<td>
<?php
@@ -36,10 +36,10 @@ }
echo elgg_view('input/radio',array('internalname' => "method[{$k}]", 'options' => array('yes','no'), 'value' => $val));
-?> - </td> - </tr> -<?php - } -?> +?>
+ </td>
+ </tr>
+<?php
+ }
+?>
</table>
\ No newline at end of file |