diff options
author | Callum Macrae <callum@lynxphp.com> | 2011-09-28 18:48:46 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 02:09:18 +0200 |
commit | 5b2352613ef8e2bdc4e418b74ea650df825b829c (patch) | |
tree | 37598d915242079de663b18f11f9da47316b17e3 | |
parent | ac2e2707976a72a45b645f4d4db2576dd911e5be (diff) | |
download | forums-5b2352613ef8e2bdc4e418b74ea650df825b829c.tar forums-5b2352613ef8e2bdc4e418b74ea650df825b829c.tar.gz forums-5b2352613ef8e2bdc4e418b74ea650df825b829c.tar.bz2 forums-5b2352613ef8e2bdc4e418b74ea650df825b829c.tar.xz forums-5b2352613ef8e2bdc4e418b74ea650df825b829c.zip |
[ticket/10270] Added the alerts to the ACP footer.
I had forgotten to do it previously.
PHPBB3-10270
-rw-r--r-- | phpBB/adm/style/overall_footer.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/adm/style/overall_footer.html b/phpBB/adm/style/overall_footer.html index b57f8261a3..e54f75a813 100644 --- a/phpBB/adm/style/overall_footer.html +++ b/phpBB/adm/style/overall_footer.html @@ -22,6 +22,17 @@ <div id="darken"> </div> <div class="jalert" id="loadingalert"><h3>{L_LOADING}</h3><p>{L_PLEASE_WAIT}</p></div> </div> + + <div id="phpbb_alert" class="phpbb_alert"> + <a href="#"><img src="{T_THEME_PATH}/images/alert_close.png" class="alert_close" /></a> + <h3></h3><p></p> + </div> + <div id="phpbb_confirm" class="phpbb_alert"> + <a href="#"><img src="{T_THEME_PATH}/images/alert_close.png" class="alert_close" /></a> + <p></p> + <input type="button" class="button1" value="{L_YES}" /> + <input type="button" class="button2" value="{L_NO}" /> + </div> </div> </div> |