aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2014-03-05 14:53:31 -0800
committerMatt Friedman <maf675@gmail.com>2014-03-05 14:53:31 -0800
commit4e770c2b429cab9aad69a390d1cd4d2c67b7062a (patch)
tree44ea23a36f8bf94e6a0b10458cfcbaa4761df529 /phpBB/adm
parentd0b07503ad86d8c2fac5c7396348988e1587a684 (diff)
downloadforums-4e770c2b429cab9aad69a390d1cd4d2c67b7062a.tar
forums-4e770c2b429cab9aad69a390d1cd4d2c67b7062a.tar.gz
forums-4e770c2b429cab9aad69a390d1cd4d2c67b7062a.tar.bz2
forums-4e770c2b429cab9aad69a390d1cd4d2c67b7062a.tar.xz
forums-4e770c2b429cab9aad69a390d1cd4d2c67b7062a.zip
[ticket/12248] Fix meta_author tags (IDs must be unique)
PHPBB3-12248
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/style/acp_ext_details.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/phpBB/adm/style/acp_ext_details.html b/phpBB/adm/style/acp_ext_details.html
index f14243dad0..c43a229515 100644
--- a/phpBB/adm/style/acp_ext_details.html
+++ b/phpBB/adm/style/acp_ext_details.html
@@ -69,25 +69,25 @@
<!-- BEGIN meta_authors -->
<fieldset>
<dl>
- <dt><label for="meta_author_name">{L_AUTHOR_NAME}{L_COLON}</label></dt>
- <dd><strong id="meta_author_name">{meta_authors.AUTHOR_NAME}</strong></dd>
+ <dt><label for="meta_author_name_{meta_authors.S_ROW_COUNT}">{L_AUTHOR_NAME}{L_COLON}</label></dt>
+ <dd><strong id="meta_author_name_{meta_authors.S_ROW_COUNT}">{meta_authors.AUTHOR_NAME}</strong></dd>
</dl>
<!-- IF meta_authors.AUTHOR_EMAIL -->
<dl>
- <dt><label for="meta_author_email">{L_AUTHOR_EMAIL}{L_COLON}</label></dt>
- <dd><strong id="meta_author_email"><a href="mailto:{meta_authors.AUTHOR_EMAIL}">{meta_authors.AUTHOR_EMAIL}</a></strong></dd>
+ <dt><label for="meta_author_email_{meta_authors.S_ROW_COUNT}">{L_AUTHOR_EMAIL}{L_COLON}</label></dt>
+ <dd><strong id="meta_author_email_{meta_authors.S_ROW_COUNT}"><a href="mailto:{meta_authors.AUTHOR_EMAIL}">{meta_authors.AUTHOR_EMAIL}</a></strong></dd>
</dl>
<!-- ENDIF -->
<!-- IF meta_authors.AUTHOR_HOMEPAGE -->
<dl>
- <dt><label for="meta_author_url">{L_AUTHOR_HOMEPAGE}{L_COLON}</label></dt>
- <dd><strong id="meta_author_url"><a href="{meta_authors.AUTHOR_HOMEPAGE}">{meta_authors.AUTHOR_HOMEPAGE}</a></strong></dd>
+ <dt><label for="meta_author_url_{meta_authors.S_ROW_COUNT}">{L_AUTHOR_HOMEPAGE}{L_COLON}</label></dt>
+ <dd><strong id="meta_author_url_{meta_authors.S_ROW_COUNT}"><a href="{meta_authors.AUTHOR_HOMEPAGE}">{meta_authors.AUTHOR_HOMEPAGE}</a></strong></dd>
</dl>
<!-- ENDIF -->
<!-- IF meta_authors.AUTHOR_ROLE -->
<dl>
- <dt><label for="author_role">{L_AUTHOR_ROLE}{L_COLON}</label></dt>
- <dd><strong id="meta_author_role">{meta_authors.AUTHOR_ROLE}</strong></dd>
+ <dt><label for="meta_author_role_{meta_authors.S_ROW_COUNT}">{L_AUTHOR_ROLE}{L_COLON}</label></dt>
+ <dd><strong id="meta_author_role_{meta_authors.S_ROW_COUNT}">{meta_authors.AUTHOR_ROLE}</strong></dd>
</dl>
<!-- ENDIF -->
</fieldset>