diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/adm/style/overall_footer.html | 4 | ||||
-rw-r--r-- | phpBB/assets/javascript/core.js | 6 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/overall_footer.html | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/phpBB/adm/style/overall_footer.html b/phpBB/adm/style/overall_footer.html index e54f75a813..d58ac06aaa 100644 --- a/phpBB/adm/style/overall_footer.html +++ b/phpBB/adm/style/overall_footer.html @@ -25,11 +25,11 @@ <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> + <h3 class="alert_title"></h3><p class="alert_text"></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> + <p class="alert_text"></p> <input type="button" class="button1" value="{L_YES}" /> <input type="button" class="button2" value="{L_NO}" /> </div> diff --git a/phpBB/assets/javascript/core.js b/phpBB/assets/javascript/core.js index 5a43c0b3cb..22465a040d 100644 --- a/phpBB/assets/javascript/core.js +++ b/phpBB/assets/javascript/core.js @@ -48,8 +48,8 @@ phpbb.loading_alert = function() { */ phpbb.alert = function(title, msg, fadedark) { var div = $('#phpbb_alert'); - div.find('h3').html(title); - div.find('p').html(msg); + div.find('.alert_title').html(title); + div.find('.alert_text').html(msg); div.bind('click', function(e) { e.stopPropagation(); @@ -110,7 +110,7 @@ phpbb.alert = function(title, msg, fadedark) { */ phpbb.confirm = function(msg, callback, fadedark) { var div = $('#phpbb_confirm'); - div.find('p').html(msg); + div.find('.alert_text').html(msg); div.bind('click', function(e) { e.stopPropagation(); diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html index 981740510d..542bdf45f1 100644 --- a/phpBB/styles/prosilver/template/overall_footer.html +++ b/phpBB/styles/prosilver/template/overall_footer.html @@ -24,7 +24,7 @@ <!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF --> <!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF --> </div> - + <div id="darkenwrapper"> <div id="darken"> </div> <div class="jalert" id="loadingalert"><h3>{L_LOADING}</h3><p>{L_PLEASE_WAIT}</p></div> @@ -32,11 +32,11 @@ <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> + <h3 class="alert_title"></h3><p class="alert_text"></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> + <p class="alert_text"></p> <input type="button" class="button1" value="{L_YES}" /> <input type="button" class="button2" value="{L_NO}" /> </div> |