mirror of
https://github.com/phpbb/phpbb.git
synced 2025-10-18 10:16:16 +02:00
oops, oops and done
git-svn-id: file:///svn/phpbb/trunk@2736 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -27,7 +27,7 @@ if ( !empty($setmodules) )
|
||||
}
|
||||
|
||||
$filename = basename(__FILE__);
|
||||
$module['DB']['Search_indexing'] = $filename;
|
||||
$module['DB']['Search_indexing'] = $filename . $SID;
|
||||
|
||||
return;
|
||||
}
|
||||
@@ -273,7 +273,16 @@ if ( isset($HTTP_POST_VARS['start']) || isset($HTTP_GET_VARS['batchstart']) )
|
||||
|
||||
page_header($lang['DB']);
|
||||
|
||||
?>
|
||||
|
||||
<h1><?php echo $lang['Search_indexing']; ?></h1>
|
||||
|
||||
<p><?php echo $lang['Search_indexing_complete']; ?></p>
|
||||
|
||||
<?php
|
||||
|
||||
page_footer();
|
||||
|
||||
}
|
||||
|
||||
exit;
|
||||
@@ -281,7 +290,17 @@ if ( isset($HTTP_POST_VARS['start']) || isset($HTTP_GET_VARS['batchstart']) )
|
||||
}
|
||||
else if ( isset($HTTP_POST_VARS['cancel']) )
|
||||
{
|
||||
page_header($lang['DB']);
|
||||
|
||||
?>
|
||||
|
||||
<h1><?php echo $lang['Search_indexing']; ?></h1>
|
||||
|
||||
<p><?php echo $lang['Search_indexing_cancel']; ?></p>
|
||||
|
||||
<?php
|
||||
|
||||
page_footer();
|
||||
|
||||
}
|
||||
else
|
||||
|
@@ -53,7 +53,7 @@ if ( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'top' )
|
||||
|
||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td><a href="index.<?php echo $phpEx; ?>?pane=right" target="main"><img src="images/header_left.jpg" width="200" height="60" alt="phpBB Logo" title="phpBB Logo" border="0"/></a></td>
|
||||
<td><a href="index.<?php echo $phpEx . $SID; ?>&pane=right" target="main"><img src="images/header_left.jpg" width="200" height="60" alt="phpBB Logo" title="phpBB Logo" border="0"/></a></td>
|
||||
<td width="100%" background="images/header_bg.jpg" height="60" align="right" nowrap="nowrap"><span class="maintitle"><?php echo $lang['Admin_title']; ?></span> </td>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -98,10 +98,10 @@ else if ( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'left' )
|
||||
<th class="menu" height="25">» <?php echo $lang['Return_to']; ?></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><a class="genmed" href="index.<?php echo $phpEx; ?>?pane=right" target="main"><?php echo $lang['Admin_Index']; ?></a></td>
|
||||
<td class="row1"><a class="genmed" href="index.<?php echo $phpEx . $SID; ?>&pane=right" target="main"><?php echo $lang['Admin_Index']; ?></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2"><a class="genmed" href="../" target="_top"><?php echo $lang['Forum_index']; ?></a></td>
|
||||
<td class="row2"><a class="genmed" href="../index.<?php echo $phpEx . $SID; ?>" target="_top"><?php echo $lang['Forum_index']; ?></a></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
|
@@ -84,7 +84,7 @@ function page_footer($ignore_copyright = false)
|
||||
|
||||
function page_message($title, $message, $show_header)
|
||||
{
|
||||
global $lang;
|
||||
global $phpEx, $SID, $lang;
|
||||
|
||||
if ( $show_header )
|
||||
{
|
||||
@@ -92,7 +92,7 @@ function page_message($title, $message, $show_header)
|
||||
|
||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td><a href="../"><img src="images/header_left.jpg" width="200" height="60" alt="phpBB Logo" title="phpBB Logo" border="0"/></a></td>
|
||||
<td><a href="../index.<?php echo $phpEx . $SID; ?>"><img src="images/header_left.jpg" width="200" height="60" alt="phpBB Logo" title="phpBB Logo" border="0"/></a></td>
|
||||
<td width="100%" background="images/header_bg.jpg" height="60" align="right" nowrap="nowrap"><span class="maintitle"><?php echo $lang['Admin_title']; ?></span> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
Reference in New Issue
Block a user