|
From: Paul S. O. <ps...@us...> - 2002-04-03 00:29:58
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv18620/admin
Modified Files:
admin_forum_prune.php
Log Message:
Various updates with any luck they fix a few minor issues without causing new ones ...
Index: admin_forum_prune.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_forum_prune.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** admin_forum_prune.php 22 Mar 2002 17:00:32 -0000 1.20
--- admin_forum_prune.php 2 Apr 2002 14:04:18 -0000 1.21
***************
*** 20,24 ****
***************************************************************************/
! define('IN_PHPBB', 1);
if ( !empty($setmodules) )
--- 20,24 ----
***************************************************************************/
! define('IN_PHPBB', true);
if ( !empty($setmodules) )
***************
*** 33,37 ****
// Load default header
//
! $phpbb_root_path = "../";
require($phpbb_root_path . 'extension.inc');
require('pagestart.' . $phpEx);
--- 33,37 ----
// Load default header
//
! $phpbb_root_path = '../';
require($phpbb_root_path . 'extension.inc');
require('pagestart.' . $phpEx);
***************
*** 48,52 ****
if( $forum_id == -1 )
{
! $forum_sql = "";
}
else
--- 48,52 ----
if( $forum_id == -1 )
{
! $forum_sql = '';
}
else
***************
*** 58,63 ****
else
{
! $forum_id = "";
! $forum_sql = "";
}
//
--- 58,63 ----
else
{
! $forum_id = '';
! $forum_sql = '';
}
//
***************
*** 91,95 ****
$template->set_filenames(array(
! "body" => "admin/forum_prune_result_body.tpl")
);
--- 91,95 ----
$template->set_filenames(array(
! 'body' => 'admin/forum_prune_result_body.tpl')
);
***************
*** 97,101 ****
{
$p_result = prune($forum_rows[$i]['forum_id'], $prunedate);
- sync('forum', $forum_rows[$i]['forum_id']);
$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
--- 97,100 ----
|