mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-23 03:19:01 +01:00
Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
41 lines
677 B
HTML
41 lines
677 B
HTML
<!-- INCLUDE simple_header.html -->
|
|
|
|
<script type="text/javascript">
|
|
// <![CDATA[
|
|
/**
|
|
* Close previously opened popup
|
|
*/
|
|
function close_popup()
|
|
{
|
|
if (opener != null)
|
|
{
|
|
if (opener.close_waitscreen != null)
|
|
{
|
|
if (opener.close_waitscreen == 1)
|
|
{
|
|
opener.close_waitscreen = 0;
|
|
self.close();
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
setTimeout("close_popup()", 1000);
|
|
return 0;
|
|
}
|
|
// ]]>
|
|
</script>
|
|
|
|
<div class="successbox">
|
|
<h3>{L_PROGRESS}</h3>
|
|
<img src="images/progress_bar.gif" alt="{L_PROGRESS}" />
|
|
<p>{L_PROGRESS_EXPLAIN}</p>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
// <![CDATA[
|
|
close_popup();
|
|
// ]]>
|
|
</script>
|
|
|
|
<!-- INCLUDE simple_footer.html -->
|