diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-05-11 13:04:00 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-05-28 22:16:48 +0200 |
commit | 5e29ea77d813fb6f10583fa440ed4e55e78bd28d (patch) | |
tree | abfca48dc000aba18c55d53d2b43f596fa5856d3 /phpBB/adm | |
parent | a80a9efa8de086e0100b1a6d33ac349e955e9d18 (diff) | |
download | forums-5e29ea77d813fb6f10583fa440ed4e55e78bd28d.tar forums-5e29ea77d813fb6f10583fa440ed4e55e78bd28d.tar.gz forums-5e29ea77d813fb6f10583fa440ed4e55e78bd28d.tar.bz2 forums-5e29ea77d813fb6f10583fa440ed4e55e78bd28d.tar.xz forums-5e29ea77d813fb6f10583fa440ed4e55e78bd28d.zip |
[ticket/11366] Coding style
PHPBB3-11366
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/acp_ext_details.html | 6 | ||||
-rw-r--r-- | phpBB/adm/style/acp_ext_list.html | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_ext_details.html b/phpBB/adm/style/acp_ext_details.html index 95b23395dd..65a9d3c774 100644 --- a/phpBB/adm/style/acp_ext_details.html +++ b/phpBB/adm/style/acp_ext_details.html @@ -6,12 +6,16 @@ <h1>{L_EXTENSIONS_ADMIN}</h1> - <!-- IF S_VERSIONCHECK_FAIL --> + <!-- IF S_VERSIONCHECK_STATUS == 0 --> <div class="errorbox notice"> <p>{L_VERSIONCHECK_FAIL}</p> <p>{VERSIONCHECK_FAIL_REASON}</p> <p><a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE}</a></p> </div> + <!-- ELSE IF S_VERSIONCHECK_STATUS == 1 --> + <div class="errorbox notice"> + <p>{VERSIONCHECK_FAIL_REASON}</p> + </div> <!-- ENDIF --> <!-- IF S_VERSIONCHECK --> <div class="<!-- IF S_UP_TO_DATE -->successbox<!-- ELSE -->errorbox<!-- ENDIF -->"> diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html index a47b1bd576..0aed0243d9 100644 --- a/phpBB/adm/style/acp_ext_list.html +++ b/phpBB/adm/style/acp_ext_list.html @@ -13,7 +13,7 @@ <th>{L_EXTENSION_NAME}</th> <th width="20%">{L_CURRENT_VERSION}</th> <th width="10%">{L_EXTENSION_OPTIONS}</th> - <th width="10%">{L_EXTENSION_ACTIONS}</th> + <th width="25%">{L_EXTENSION_ACTIONS}</th> </tr> </thead> <tbody> |