Quote:
Originally posted by xug
I'll get this error :
Parse error: parse error, unexpected $ in /home/xrhyze/public_html/forums/admin/sessions.php on line 400
FYI, I work with vB2.2.6
|
The suggested alteration shouldn't have even touched line 400.
PHP Code:
<?php
error_reporting(7);
if ($templateversion > '2.0.1') { // Use location!
// location fix.
if (($updatelocation==True) or (!isset($updatelocation))) {
$location1 = ",location='" . addslashes($scriptpath) . "'";
$location2 = ",location";
$location3 = ",'" . addslashes($scriptpath) . "'";
} else {
$location1 = '';
$location2 = '';
$location3 = '';
}
} else {
$location1 = '';
$location2 = '';
$location3 = '';
}
// ###################### Start sessions #######################
Is how the begining of sessions.php should look after modification.