diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-27 18:25:37 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-27 18:25:37 -0500 |
commit | 48ccc9eb93c8413f05f6a50d40e597f560c671d8 (patch) | |
tree | 20ba16edf636eeb2523c51559d33462d1fea07f3 /phpBB/styles | |
parent | f062087f30fab4ce497333cd88735920efe0737f (diff) | |
download | forums-48ccc9eb93c8413f05f6a50d40e597f560c671d8.tar forums-48ccc9eb93c8413f05f6a50d40e597f560c671d8.tar.gz forums-48ccc9eb93c8413f05f6a50d40e597f560c671d8.tar.bz2 forums-48ccc9eb93c8413f05f6a50d40e597f560c671d8.tar.xz forums-48ccc9eb93c8413f05f6a50d40e597f560c671d8.zip |
[ticket/11103] UCP Notification Options can now be set
PHPBB3-11103
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_notifications.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index 94830bb3a5..ff4e5d7b25 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -131,7 +131,7 @@ <!-- IF not S_IS_BOT and S_USER_LOGGED_IN --> <ul class="linklist leftside"> <li> - [ <a href="#" id="notification_list_button" title="{L_NOTIFICATIONS}">{NUM_UNREAD_NOTIFICATIONS} {L_NOTIFICATIONS}</a> ] • + [ <a href="#" id="notification_list_button" title="{NOTIFICATIONS_CNT}">{NOTIFICATIONS_CNT}</a> ] • <div id="notification_list"> <ul class="topiclist forums"> <!-- BEGIN notifications --> diff --git a/phpBB/styles/prosilver/template/ucp_notifications.html b/phpBB/styles/prosilver/template/ucp_notifications.html index 0479e66efe..c6665c16c0 100644 --- a/phpBB/styles/prosilver/template/ucp_notifications.html +++ b/phpBB/styles/prosilver/template/ucp_notifications.html @@ -24,9 +24,9 @@ {notification_types.NAME} </dt> <!-- BEGIN notification_methods --> - <dd class="mark"><input type="checkbox" name="{notification_types.TYPE}_{notification_methods.METHOD}" /> <dfn>{notification_methods.NAME}</dfn></dd> + <dd class="mark"><input type="checkbox" name="{notification_types.TYPE}_{notification_methods.METHOD}"<!-- IF notification_methods.SUBSCRIBED --> checked="checked"<!-- ENDIF --> /> <dfn>{notification_methods.NAME}</dfn></dd> <!-- END notification_methods --> - <dd class="mark"><input type="checkbox" name="{notification_types.TYPE}_notification" /> <dfn>{notification_methods.NAME}</dfn></dd> + <dd class="mark"><input type="checkbox" name="{notification_types.TYPE}_notification"<!-- IF notification_types.SUBSCRIBED --> checked="checked"<!-- ENDIF --> /> <dfn>{notification_methods.NAME}</dfn></dd> </dl> </li> <!-- END notification_types --> |