aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/adm/style/progress_bar.html')
-rw-r--r--phpBB/adm/style/progress_bar.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/phpBB/adm/style/progress_bar.html b/phpBB/adm/style/progress_bar.html
new file mode 100644
index 0000000000..00e1e5e885
--- /dev/null
+++ b/phpBB/adm/style/progress_bar.html
@@ -0,0 +1,40 @@
+<!-- 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 --> \ No newline at end of file