aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2014-03-17 12:10:18 -0700
committerMatt Friedman <maf675@gmail.com>2014-03-17 12:10:18 -0700
commite46e3111e2a3e10c9c571f846f07afb780ec8dd5 (patch)
treef3c0f5949bccf9006e8c1ddbccf2b4020e218158
parentf9438bcbf700b9d237791390c0ec6aca461e8fd7 (diff)
downloadforums-e46e3111e2a3e10c9c571f846f07afb780ec8dd5.tar
forums-e46e3111e2a3e10c9c571f846f07afb780ec8dd5.tar.gz
forums-e46e3111e2a3e10c9c571f846f07afb780ec8dd5.tar.bz2
forums-e46e3111e2a3e10c9c571f846f07afb780ec8dd5.tar.xz
forums-e46e3111e2a3e10c9c571f846f07afb780ec8dd5.zip
[ticket/12284] Improve readability of extension manager details
Use span tags like the rest of the ACP does, instead of P tags. There is no semantic need to use P tags here. These are not paragraphs. PHPBB3-12284
-rw-r--r--phpBB/adm/style/acp_ext_details.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/adm/style/acp_ext_details.html b/phpBB/adm/style/acp_ext_details.html
index 986aa24b1b..5141acd9fc 100644
--- a/phpBB/adm/style/acp_ext_details.html
+++ b/phpBB/adm/style/acp_ext_details.html
@@ -21,12 +21,12 @@
<!-- IF META_DESCRIPTION -->
<dl>
<dt><label>{L_DESCRIPTION}{L_COLON}</label></dt>
- <dd><p id="meta_description">{META_DESCRIPTION}</p></dd>
+ <dd><span id="meta_description">{META_DESCRIPTION}</span></dd>
</dl>
<!-- ENDIF -->
<dl>
<dt><label>{L_VERSION}{L_COLON}</label></dt>
- <dd><p id="meta_version">{META_VERSION}</p></dd>
+ <dd><span id="meta_version">{META_VERSION}</span></dd>
</dl>
<!-- IF META_HOMEPAGE -->
<dl>
@@ -37,12 +37,12 @@
<!-- IF META_TIME -->
<dl>
<dt><label>{L_TIME}{L_COLON}</label></dt>
- <dd><p id="meta_time">{META_TIME}</p></dd>
+ <dd><span id="meta_time">{META_TIME}</span></dd>
</dl>
<!-- ENDIF -->
<dl>
<dt><label>{L_LICENCE}{L_COLON}</label></dt>
- <dd><p id="meta_license">{META_LICENCE}</p></dd>
+ <dd><span id="meta_license">{META_LICENCE}</span></dd>
</dl>
</fieldset>
@@ -52,13 +52,13 @@
<!-- IF META_REQUIRE_PHPBB -->
<dl<!-- IF META_REQUIRE_PHPBB_FAIL --> class="requirements_not_met"<!-- ENDIF -->>
<dt><label>{L_PHPBB_VERSION}{L_COLON}</label></dt>
- <dd><p id="require_phpbb">{META_REQUIRE_PHPBB}</p></dd>
+ <dd><span id="require_phpbb">{META_REQUIRE_PHPBB}</span></dd>
</dl>
<!-- ENDIF -->
<!-- IF META_REQUIRE_PHP -->
<dl<!-- IF META_REQUIRE_PHP_FAIL --> class="requirements_not_met"<!-- ENDIF -->>
<dt><label>{L_PHP_VERSION}{L_COLON}</label></dt>
- <dd><p id="require_php">{META_REQUIRE_PHP}</p></dd>
+ <dd><span id="require_php">{META_REQUIRE_PHP}</span></dd>
</dl>
<!-- ENDIF -->
</fieldset>