diff options
author | Matt Friedman <maf675@gmail.com> | 2013-10-19 08:55:13 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2013-10-19 08:55:13 -0700 |
commit | 546332b141dd61f284fd79c4872eb04fc53a987d (patch) | |
tree | 92ac4941d05b5ca9fb5716c46711f31a0fdcca18 /phpBB/styles/prosilver/template/ucp_groups_manage.html | |
parent | 5d49a8f06e7cb79c4ef3c5ad8ef5cac67e135b68 (diff) | |
download | forums-546332b141dd61f284fd79c4872eb04fc53a987d.tar forums-546332b141dd61f284fd79c4872eb04fc53a987d.tar.gz forums-546332b141dd61f284fd79c4872eb04fc53a987d.tar.bz2 forums-546332b141dd61f284fd79c4872eb04fc53a987d.tar.xz forums-546332b141dd61f284fd79c4872eb04fc53a987d.zip |
[ticket/11935] Remove obsolete table attributes from Prosilver
cellpadding, cellspacing, border are obsolete table attributes.
They are handled by CSS already using table and .table1
PHPBB3-11935
Diffstat (limited to 'phpBB/styles/prosilver/template/ucp_groups_manage.html')
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_groups_manage.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_groups_manage.html b/phpBB/styles/prosilver/template/ucp_groups_manage.html index a785d18082..0148959ae1 100644 --- a/phpBB/styles/prosilver/template/ucp_groups_manage.html +++ b/phpBB/styles/prosilver/template/ucp_groups_manage.html @@ -77,7 +77,7 @@ <!-- ELSEIF S_LIST --> <!-- IF .leader --> - <table class="table1" cellspacing="1"> + <table class="table1"> <thead> <tr> <th class="name">{L_GROUP_LEAD}</th> @@ -103,7 +103,7 @@ <!-- BEGIN member --> <!-- IF member.S_PENDING --> - <table class="table1" cellspacing="1"> + <table class="table1"> <thead> <tr> <th class="name">{L_GROUP_PENDING}</th> @@ -119,7 +119,7 @@ </tbody> </table> <!-- ENDIF --> - <table class="table1" cellspacing="1"> + <table class="table1"> <thead> <tr> <th class="name">{L_GROUP_APPROVED}</th> @@ -140,7 +140,7 @@ </tr> <!-- ENDIF --> <!-- BEGINELSE --> - <table class="table1" cellspacing="1"> + <table class="table1"> <thead> <tr> <th class="name">{L_MEMBERS}</th> |