aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/progress_bar.html
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-09-30 14:58:05 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-09-30 14:58:05 +0000
commitb08c54f35eb85d0ccd01c65e1d9460603fc1c076 (patch)
tree252d8a70ca5e3b84eb590c404a2fe7df16653972 /phpBB/adm/style/progress_bar.html
parente4fc191e0dba2f18dd046451f1a95e4fb9e76a88 (diff)
downloadforums-b08c54f35eb85d0ccd01c65e1d9460603fc1c076.tar
forums-b08c54f35eb85d0ccd01c65e1d9460603fc1c076.tar.gz
forums-b08c54f35eb85d0ccd01c65e1d9460603fc1c076.tar.bz2
forums-b08c54f35eb85d0ccd01c65e1d9460603fc1c076.tar.xz
forums-b08c54f35eb85d0ccd01c65e1d9460603fc1c076.zip
- fixing a bug i am unsure about when it occurs (but it occurs). The symptoms are broken template cache files if after removing unnecessary php opening/closing tags result in statements being syntactially incorrect.
- added real syncing to forums acp (not only forum statistics rebuild) git-svn-id: file:///svn/phpbb/trunk@6419 89ea8834-ac86-4346-8a33-228a782c2dd0
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..ef9590119f
--- /dev/null
+++ b/phpBB/adm/style/progress_bar.html
@@ -0,0 +1,40 @@
+<!-- INCLUDE simple_header.html -->
+
+<script type="text/javascript">
+<!--
+ /**
+ * 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">
+<!--
+ close_popup();
+//-->
+</script>
+
+<!-- INCLUDE simple_footer.html --> \ No newline at end of file