diff options
author | Matt Friedman <maf675@gmail.com> | 2011-09-11 12:10:46 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2011-09-11 17:04:47 -0700 |
commit | 3f61075a15c6c1cd32c11831234b91b6a33500ae (patch) | |
tree | 86b2c51b0092fa624a58a503cfebc2f1f40f155b /phpBB/styles/subsilver2/template/mcp_post.html | |
parent | 5797de767e1a87dfe421420db2d39e4df2f74fe6 (diff) | |
download | forums-3f61075a15c6c1cd32c11831234b91b6a33500ae.tar forums-3f61075a15c6c1cd32c11831234b91b6a33500ae.tar.gz forums-3f61075a15c6c1cd32c11831234b91b6a33500ae.tar.bz2 forums-3f61075a15c6c1cd32c11831234b91b6a33500ae.tar.xz forums-3f61075a15c6c1cd32c11831234b91b6a33500ae.zip |
[ticket/10362] HTML5 Fix - Replace name attribute with id in anchors
When validating for HTML5, the name attribute is obsolete/deprecated
when used in anchor tags. The ID tag should be used here instead.
PHPBB3-10362
Diffstat (limited to 'phpBB/styles/subsilver2/template/mcp_post.html')
-rw-r--r-- | phpBB/styles/subsilver2/template/mcp_post.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/subsilver2/template/mcp_post.html b/phpBB/styles/subsilver2/template/mcp_post.html index 771b1bc9e1..784dbc3e9b 100644 --- a/phpBB/styles/subsilver2/template/mcp_post.html +++ b/phpBB/styles/subsilver2/template/mcp_post.html @@ -139,7 +139,7 @@ <!-- IF S_TOPIC_REVIEW --><!-- INCLUDE posting_topic_review.html --><!-- ENDIF --> <!-- ELSE --> <!-- IF S_CAN_LOCK_POST or S_CAN_DELETE_POST or S_CAN_CHGPOSTER --> - <br /><a name="mod"></a> + <br /><a id="mod"></a> <table width="100%" cellpadding="3" cellspacing="1" border="0" class="tablebg"> <tr> @@ -161,7 +161,7 @@ <!-- ENDIF --> <!-- IF S_CAN_VIEWIP --> - <br /><a name="ip"></a> + <br /><a id="ip"></a> <table width="100%" cellpadding="3" cellspacing="1" border="0" class="tablebg"> <tr> |