diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-30 19:30:49 -0500 |
---|---|---|
committer | Unknown Bliss <m@michaelcullum.com> | 2012-09-01 15:05:54 +0100 |
commit | dce04b2d03f93c9237b743afbcbd89fb6405f836 (patch) | |
tree | b7f2d778d3785f35ad2302838918a78dd6372628 /phpBB/adm/style | |
parent | 47898cb37a1c1f517b5e6ae95427807ea5de11da (diff) | |
download | forums-dce04b2d03f93c9237b743afbcbd89fb6405f836.tar forums-dce04b2d03f93c9237b743afbcbd89fb6405f836.tar.gz forums-dce04b2d03f93c9237b743afbcbd89fb6405f836.tar.bz2 forums-dce04b2d03f93c9237b743afbcbd89fb6405f836.tar.xz forums-dce04b2d03f93c9237b743afbcbd89fb6405f836.zip |
[ticket/10631] Various front-end fixes (extensions manager)
Add Back button from details
Add cancel button from actions
Correct language strings
PHPBB3-10631
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_ext_details.html | 2 | ||||
-rw-r--r-- | phpBB/adm/style/acp_ext_disable.html | 5 | ||||
-rw-r--r-- | phpBB/adm/style/acp_ext_enable.html | 3 | ||||
-rw-r--r-- | phpBB/adm/style/acp_ext_purge.html | 5 |
4 files changed, 10 insertions, 5 deletions
diff --git a/phpBB/adm/style/acp_ext_details.html b/phpBB/adm/style/acp_ext_details.html index 7408e88758..e927e9de18 100644 --- a/phpBB/adm/style/acp_ext_details.html +++ b/phpBB/adm/style/acp_ext_details.html @@ -2,6 +2,8 @@ <a name="maincontent"></a> + <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a> + <h1>{L_EXTENSIONS_ADMIN}</h1> <fieldset> diff --git a/phpBB/adm/style/acp_ext_disable.html b/phpBB/adm/style/acp_ext_disable.html index 1f0bbe14c8..7dc3f6ec97 100644 --- a/phpBB/adm/style/acp_ext_disable.html +++ b/phpBB/adm/style/acp_ext_disable.html @@ -5,7 +5,7 @@ <h1>{L_EXTENSIONS_ADMIN}</h1> <p>{L_EXTENSIONS_EXPLAIN}</p> - <p>{L_ENABLE_EXPLAIN}</p> + <p>{L_DISABLE_EXPLAIN}</p> <!-- IF PRE --> <div class="errorbox"> @@ -15,7 +15,8 @@ <form id="acp_extensions" method="post" action="{U_DISABLE}"> <fieldset class="submit-buttons"> <legend>{L_DISABLE}</legend> - <input class="button1" type="submit" name="{L_DISABLE}" value="{L_DISABLE}" /> + <input class="button1" type="submit" name="disable" value="{L_DISABLE}" /> + <input class="button2" type="submit" name="cancel" value="{L_CANCEL}" /> </fieldset> </form> <!-- ELSEIF S_NEXT_STEP --> diff --git a/phpBB/adm/style/acp_ext_enable.html b/phpBB/adm/style/acp_ext_enable.html index 9f278bfbe0..3f7be2c847 100644 --- a/phpBB/adm/style/acp_ext_enable.html +++ b/phpBB/adm/style/acp_ext_enable.html @@ -15,7 +15,8 @@ <form id="acp_extensions" method="post" action="{U_ENABLE}"> <fieldset class="submit-buttons"> <legend>{L_ENABLE}</legend> - <input class="button1" type="submit" name="{L_ENABLE}" value="{L_ENABLE}" /> + <input class="button1" type="submit" name="enable" value="{L_ENABLE}" /> + <input class="button2" type="submit" name="cancel" value="{L_CANCEL}" /> </fieldset> </form> <!-- ELSEIF S_NEXT_STEP --> diff --git a/phpBB/adm/style/acp_ext_purge.html b/phpBB/adm/style/acp_ext_purge.html index 816fd872b9..00a58721cb 100644 --- a/phpBB/adm/style/acp_ext_purge.html +++ b/phpBB/adm/style/acp_ext_purge.html @@ -5,7 +5,7 @@ <h1>{L_EXTENSIONS_ADMIN}</h1> <p>{L_EXTENSIONS_EXPLAIN}</p> - <p>{L_ENABLE_EXPLAIN}</p> + <p>{L_PURGE_EXPLAIN}</p> <!-- IF PRE --> <div class="errorbox"> @@ -15,7 +15,8 @@ <form id="acp_extensions" method="post" action="{U_PURGE}"> <fieldset class="submit-buttons"> <legend>{L_PURGE}</legend> - <input class="button1" type="submit" name="{L_PURGE}" value="{L_PURGE}" /> + <input class="button1" type="submit" name="purge" value="{L_PURGE}" /> + <input class="button2" type="submit" name="cancel" value="{L_CANCEL}" /> </fieldset> </form> <!-- ELSEIF S_NEXT_STEP --> |