diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-23 18:22:35 -0500 |
---|---|---|
committer | Unknown Bliss <m@michaelcullum.com> | 2012-09-01 15:05:32 +0100 |
commit | 106c105113886f9a9e603dbb11549c06049b255f (patch) | |
tree | d6f242600b03211e983f1879a28790384049703d /phpBB/adm | |
parent | 2273ae2b34071160ff930ca8d49326b8dd308899 (diff) | |
download | forums-106c105113886f9a9e603dbb11549c06049b255f.tar forums-106c105113886f9a9e603dbb11549c06049b255f.tar.gz forums-106c105113886f9a9e603dbb11549c06049b255f.tar.bz2 forums-106c105113886f9a9e603dbb11549c06049b255f.tar.xz forums-106c105113886f9a9e603dbb11549c06049b255f.zip |
[ticket/10631] Fix some issues as noted in github comments, significantly simplified validation
PHPBB3-10631
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/acp_ext_details.html | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/phpBB/adm/style/acp_ext_details.html b/phpBB/adm/style/acp_ext_details.html index 5af9603a75..7408e88758 100644 --- a/phpBB/adm/style/acp_ext_details.html +++ b/phpBB/adm/style/acp_ext_details.html @@ -16,36 +16,35 @@ <dt><label for="md_name">{L_CLEAN_NAME}:</label></dt> <dd><strong id="md_name">{MD_NAME}</strong></dd> </dl> - <dl> - <dt><label for="md_type">{L_TYPE}:</label></dt> - <dd><p id="md_type">{MD_TYPE}</p></dd> - </dl> + <!-- IF MD_DESCRIPTION --> <dl> <dt><label for="md_description">{L_DESCRIPTION}:</label></dt> <dd><p id="md_description">{MD_DESCRIPTION}</p></dd> </dl> + <!-- ENDIF --> <dl> <dt><label for="md_version">{L_VERSION}:</label></dt> <dd><p id="md_version">{MD_VERSION}</p></dd> </dl> + <!-- IF MD_HOMEPAGE --> <dl> <dt><label for="md_homepage">{L_HOMEPAGE}:</label></dt> <dd><p id="md_homepage">{MD_HOMEPAGE}</p></dd> </dl> -<!-- <dl> - <dt><label for="path">{L_PATH}:</label></dt> - <dd><p id="path">{PATH}</p></dd> - </dl> --> + <!-- ENDIF --> + <!-- IF MD_TIME --> <dl> <dt><label for="md_time">{L_TIME}:</label></dt> <dd><p id="md_time">{MD_TIME}</p></dd> </dl> + <!-- ENDIF --> <dl> <dt><label for="md_license">{L_LICENCE}:</label></dt> <dd><p id="md_license">{MD_LICENCE}</p></dd> </dl> </fieldset> + <!-- IF MD_REQUIRE_PHPBB || MD_REQUIRE_PHP --> <fieldset> <legend>{L_REQUIREMENTS}</legend> <!-- IF MD_REQUIRE_PHPBB --> @@ -61,34 +60,35 @@ </dl> <!-- ENDIF --> </fieldset> + <!-- ENDIF --> <fieldset> <legend>{L_AUTHOR_INFORMATION}</legend> <!-- BEGIN md_authors --> - <dl> - <dt><label for="md_author_name">{L_AUTHOR_NAME}:</label></dt> - <dd><strong id="md_author_name">{md_authors.AUTHOR_NAME}</strong></dd> - </dl> - <!-- IF md_authors.AUTHOR_EMAIL --> - <dl> - <dt><label for="md_author_email">{L_AUTHOR_EMAIL}:</label></dt> - <dd><strong id="md_author_email"><a href="mailto:{md_authors.AUTHOR_EMAIL}">{md_authors.AUTHOR_EMAIL}</a></strong></dd> - </dl> - <!-- ENDIF --> - <!-- IF md_authors.AUTHOR_HOMEPAGE --> - <dl> - <dt><label for="md_author_url">{L_AUTHOR_HOMEPAGE}:</label></dt> - <dd><strong id="md_author_url"><a href="{md_authors.AUTHOR_HOMEPAGE}">{md_authors.AUTHOR_HOMEPAGE}</a></strong></dd> - </dl> - <!-- ENDIF --> - <!-- IF md_authors.AUTHOR_ROLE --> - <dl> - <dt><label for="author_role">{L_AUTHOR_ROLE}:</label></dt> - <dd><strong id="md_author_role">{md_authors.AUTHOR_ROLE}</strong></dd> - </dl> - <!-- ENDIF --> - - <br /><br /> + <fieldset> + <dl> + <dt><label for="md_author_name">{L_AUTHOR_NAME}:</label></dt> + <dd><strong id="md_author_name">{md_authors.AUTHOR_NAME}</strong></dd> + </dl> + <!-- IF md_authors.AUTHOR_EMAIL --> + <dl> + <dt><label for="md_author_email">{L_AUTHOR_EMAIL}:</label></dt> + <dd><strong id="md_author_email"><a href="mailto:{md_authors.AUTHOR_EMAIL}">{md_authors.AUTHOR_EMAIL}</a></strong></dd> + </dl> + <!-- ENDIF --> + <!-- IF md_authors.AUTHOR_HOMEPAGE --> + <dl> + <dt><label for="md_author_url">{L_AUTHOR_HOMEPAGE}:</label></dt> + <dd><strong id="md_author_url"><a href="{md_authors.AUTHOR_HOMEPAGE}">{md_authors.AUTHOR_HOMEPAGE}</a></strong></dd> + </dl> + <!-- ENDIF --> + <!-- IF md_authors.AUTHOR_ROLE --> + <dl> + <dt><label for="author_role">{L_AUTHOR_ROLE}:</label></dt> + <dd><strong id="md_author_role">{md_authors.AUTHOR_ROLE}</strong></dd> + </dl> + <!-- ENDIF --> + </fieldset> <!-- END md_authors --> </fieldset> |