diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-26 18:42:00 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-26 18:42:00 +0000 |
commit | 2d560e5f9e95f7fd71e1490cd13a0ae947d81c9b (patch) | |
tree | b60c89a613c8457c81416877bdec2b8fd1a1676f /views/default/notifications/settings/usersettings.php | |
parent | 2e42219f0ee4bc07f8f3c262242e06ad4f92023e (diff) | |
download | elgg-2d560e5f9e95f7fd71e1490cd13a0ae947d81c9b.tar.gz elgg-2d560e5f9e95f7fd71e1490cd13a0ae947d81c9b.tar.bz2 |
Closes #98
git-svn-id: https://code.elgg.org/elgg/trunk@1157 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/notifications/settings/usersettings.php')
-rw-r--r-- | views/default/notifications/settings/usersettings.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/notifications/settings/usersettings.php b/views/default/notifications/settings/usersettings.php index af7c6cf54..edbaf5584 100644 --- a/views/default/notifications/settings/usersettings.php +++ b/views/default/notifications/settings/usersettings.php @@ -27,8 +27,8 @@ <td><?php echo $k; ?>: </td> <td> - <input type="radio" name="method[<?php echo $k; ?>]" value="yes" <?php if ($notification_settings->$k) echo "checked=\"yes\" "; ?>/><?php echo elgg_echo("yes"); ?><br /> - <input type="radio" name="method[<?php echo $k; ?>]" value="no" <?php if (!$notification_settings->$k) echo "checked=\"yes\" "; ?>/><?php echo elgg_echo("no"); ?> + <input type="radio" name="method[<?php echo $k; ?>]" value="yes" <?php if ($notification_settings->$k) echo "checked=\"yes\" "; ?>/><?php echo elgg_echo("option:yes"); ?><br /> + <input type="radio" name="method[<?php echo $k; ?>]" value="no" <?php if (!$notification_settings->$k) echo "checked=\"yes\" "; ?>/><?php echo elgg_echo("option:no"); ?> </td> </tr> <?php |