Page 1 of 1

PHPBB UPdate to 2.0.23

PostPosted: Tue Sep 22, 2009 3:18 am
Author: black14987
Hello Guys,

I`ve downlaoded the Upgrade from 2.0.22 to 2.0.23

In the txt document are several points I have to find and replace. But, for exampel tese two

#
#-----[ OPEN ]---------------------------------------------
#
admin/admin_ranks.php

#
#-----[ FIND ]---------------------------------------------
# Line 38
$cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? true : false;

#
#-----[ REPLACE WITH ]---------------------------------------------
#
$cancel = ( isset($HTTP_POST_VARS['cancel']) || isset($_POST['cancel']) ) ? true : false;

#
#-----[ OPEN ]---------------------------------------------
#
admin/admin_smilies.php

#
#-----[ FIND ]---------------------------------------------
# Line 40

$phpbb_root_path = "./../";
require($phpbb_root_path . 'extension.inc');

$cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? true : false;
$no_page_header = $cancel;

//
// Load default header
//
if( isset($HTTP_GET_VARS['export_pack']) )
{
if ( $HTTP_GET_VARS['export_pack'] == "send" )
{
$no_page_header = true;
}
}

#
#-----[ REPLACE WITH ]---------------------------------------------
#
$phpbb_root_path = "./../";
require($phpbb_root_path . 'extension.inc');

$cancel = ( isset($HTTP_POST_VARS['cancel']) || isset($_POST['cancel']) ) ? true : false;
$no_page_header = $cancel;

//
// Load default header
//
if ((!empty($HTTP_GET_VARS['export_pack']) && $HTTP_GET_VARS['export_pack'] == 'send') || (!empty($_GET['export_pack']) && $_GET['export_pack'] == 'send'))
{
$no_page_header = true;
}


The first on I doesn`t even find and the second is not exactly like it is shown above. Can I ignore this or do I have to insert these points even if they are not or not like shown in the files?

Re: PHPBB UPdate to 2.0.23

PostPosted: Tue Sep 22, 2009 7:33 am
Author: Helter
if this is the same site that we upgraded from 140, then the files are already 2.0.23. Just upload the install folder from the update and run the update_to_latest.php.