mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 12:03:21 +01:00
- changed attachment handling a bit - tried to remove target tags out of the code - do not add session ids to urls for bots as well as not creating a new session on each page view for them I bet i introduced some bugs too. ;) git-svn-id: file:///svn/phpbb/trunk@6364 89ea8834-ac86-4346-8a33-228a782c2dd0
47 lines
1.0 KiB
HTML
47 lines
1.0 KiB
HTML
<script language="javascript" type="text/javascript">
|
|
<!--
|
|
/**
|
|
* Close upload 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>
|
|
|
|
<!-- INCLUDE simple_header.html -->
|
|
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="10">
|
|
<tr>
|
|
<td>
|
|
<table width="100%" border="0" cellspacing="1" cellpadding="4">
|
|
<tr>
|
|
<td valign="top" class="row1" align="center"><br /><span class="genmed">{L_UPLOAD_IN_PROGRESS}</span><br /><br /><div style="align:center">{PROGRESS_BAR}</div><br /><br /><span class="genmed"><a href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a></span><br /><br /></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!-- INCLUDE simple_footer.html -->
|
|
|
|
<script language="javascript" type="text/javascript">
|
|
<!--
|
|
close_popup();
|
|
//-->
|
|
</script>
|