diff options
author | Matt Friedman <maf675@gmail.com> | 2014-04-09 17:36:46 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2014-04-09 17:36:46 -0700 |
commit | 9eeb9ed2596ba600d60179f72f59ffd455d747da (patch) | |
tree | 57be2a3bb37539fc6faee36d36e461f3911d0104 | |
parent | 51b152c8ab52a0cfc539300b6710cb66eef15e77 (diff) | |
download | forums-9eeb9ed2596ba600d60179f72f59ffd455d747da.tar forums-9eeb9ed2596ba600d60179f72f59ffd455d747da.tar.gz forums-9eeb9ed2596ba600d60179f72f59ffd455d747da.tar.bz2 forums-9eeb9ed2596ba600d60179f72f59ffd455d747da.tar.xz forums-9eeb9ed2596ba600d60179f72f59ffd455d747da.zip |
[ticket/11098] HTML Validity fix to Notifications in UCP
PHPBB3-11098
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_notifications.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_notifications.html b/phpBB/styles/prosilver/template/ucp_notifications.html index 2712e53034..b400a3c8b1 100644 --- a/phpBB/styles/prosilver/template/ucp_notifications.html +++ b/phpBB/styles/prosilver/template/ucp_notifications.html @@ -11,11 +11,13 @@ <!-- IF MODE == 'notification_options' --> <table class="table1"> <thead> - <th>{L_NOTIFICATION_TYPE}</th> - <!-- BEGIN notification_methods --> - <th class="mark">{notification_methods.NAME}</th> - <!-- END notification_methods --> - <th class="mark">{L_NOTIFICATIONS}</th> + <tr> + <th>{L_NOTIFICATION_TYPE}</th> + <!-- BEGIN notification_methods --> + <th class="mark">{notification_methods.NAME}</th> + <!-- END notification_methods --> + <th class="mark">{L_NOTIFICATIONS}</th> + </tr> </thead> <tbody> <!-- BEGIN notification_types --> |