aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_ext_details.html
diff options
context:
space:
mode:
authorNicofuma <github@nicofuma.fr>2014-04-14 19:09:06 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-28 22:16:37 +0200
commit44752c0dbfe11afb58de8956a79fbe5ec0f3e127 (patch)
tree6514c20a487c6cd4091a72d864f501d0d336eefc /phpBB/adm/style/acp_ext_details.html
parente0b2ceef833dee55a1701216d4f0823375e8fa74 (diff)
downloadforums-44752c0dbfe11afb58de8956a79fbe5ec0f3e127.tar
forums-44752c0dbfe11afb58de8956a79fbe5ec0f3e127.tar.gz
forums-44752c0dbfe11afb58de8956a79fbe5ec0f3e127.tar.bz2
forums-44752c0dbfe11afb58de8956a79fbe5ec0f3e127.tar.xz
forums-44752c0dbfe11afb58de8956a79fbe5ec0f3e127.zip
[ticket/11366] Moving to \phpbb\version_helper
+ bug fix (missing exception) + Using \phpbb\version_helper So, now, the version file have a new format : { "stable": { "<branch>": { "current": "<version>", [ "announcement": "<announcement link>", ] [ "download": "<download link>", ] }, "<branch>": { ... } }, "unstable": { } } PHPBB3-11366
Diffstat (limited to 'phpBB/adm/style/acp_ext_details.html')
-rw-r--r--phpBB/adm/style/acp_ext_details.html36
1 files changed, 20 insertions, 16 deletions
diff --git a/phpBB/adm/style/acp_ext_details.html b/phpBB/adm/style/acp_ext_details.html
index 435c36ccc6..95b23395dd 100644
--- a/phpBB/adm/style/acp_ext_details.html
+++ b/phpBB/adm/style/acp_ext_details.html
@@ -62,22 +62,26 @@
<!-- IF S_VERSIONCHECK && not S_UP_TO_DATE -->
<fieldset>
<legend>{L_LATEST_VERSION}</legend>
- <dl>
- <dt><label>{L_VERSION}{L_COLON}</label></dt>
- <dd><span id="latest_version">{LATEST_VERSION}</span></dd>
- </dl>
- <!-- IF LATEST_DOWNLOAD -->
- <dl>
- <dt><label>{L_DOWNLOAD_LATEST}</label></dt>
- <dd><strong id="latest_download"><a href="{LATEST_DOWNLOAD}">{L_DOWNLOAD} {META_NAME} {LATEST_VERSION}</a></strong></dd>
- </dl>
- <!-- ENDIF -->
- <!-- IF LATEST_ANNOUNCEMENT -->
- <dl>
- <dt><label>{L_ANNOUNCEMENT_TOPIC}</label></dt>
- <dd><strong id="latest_announcement"><a href="{LATEST_ANNOUNCEMENT}">{L_RELEASE_ANNOUNCEMENT}</a></strong></dd>
- </dl>
- <!-- ENDIF -->
+ <!-- BEGIN updates_available -->
+ <fieldset>
+ <dl>
+ <dt><label>{L_VERSION}{L_COLON}</label></dt>
+ <dd><strong>{updates_available.current}</strong></dd>
+ </dl>
+ <!-- IF updates_available.download-->
+ <dl>
+ <dt><label>{L_DOWNLOAD_LATEST}</label></dt>
+ <dd><strong><a href="{updates_available.download}">{L_DOWNLOAD} {META_NAME} {LATEST_VERSION}</a></strong></dd>
+ </dl>
+ <!-- ENDIF -->
+ <!-- IF updates_available.announcement -->
+ <dl>
+ <dt><label>{L_ANNOUNCEMENT_TOPIC}</label></dt>
+ <dd><strong><a href="{updates_available.announcement}">{L_RELEASE_ANNOUNCEMENT}</a></strong></dd>
+ </dl>
+ <!-- ENDIF -->
+ </fieldset>
+ <!-- END updates_available -->
</fieldset>
<!-- ENDIF -->