diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-09-15 13:54:14 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-09-15 20:29:45 +0530 |
commit | 41282c50658ab1d7d145f6339eca455a8081e8ae (patch) | |
tree | 13ad9253d0fcf6d918beb4f11c94c84a150ababf | |
parent | 6ce5a72c55a9dcb47488f6baeee6750cf387d70e (diff) | |
download | forums-41282c50658ab1d7d145f6339eca455a8081e8ae.tar forums-41282c50658ab1d7d145f6339eca455a8081e8ae.tar.gz forums-41282c50658ab1d7d145f6339eca455a8081e8ae.tar.bz2 forums-41282c50658ab1d7d145f6339eca455a8081e8ae.tar.xz forums-41282c50658ab1d7d145f6339eca455a8081e8ae.zip |
[ticket/11735] Display disabled checkbox when notification is already read
PHPBB3-11735
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_notifications.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_notifications.html b/phpBB/styles/prosilver/template/ucp_notifications.html index 6a1d3b8de4..2088de49e8 100644 --- a/phpBB/styles/prosilver/template/ucp_notifications.html +++ b/phpBB/styles/prosilver/template/ucp_notifications.html @@ -83,7 +83,7 @@ </div> </dt> - <dd class="mark"> <!-- IF notification_list.UNREAD --><input type="checkbox" name="mark[]" value="{notification_list.NOTIFICATION_ID}" /> <dfn>{L_MARK_READ}</dfn><!-- ENDIF --> </dd> + <dd class="mark"> <input type="checkbox" name="mark[]" value="{notification_list.NOTIFICATION_ID}"<!-- IF not notification_list.UNREAD --> disabled="disabled"<!-- ENDIF --> /> <dfn>{L_MARK_READ}</dfn> </dd> </dl> </li> <!-- END notification_list --> |