Thursday 04 December 2008 2:38:19 am
Hi,
I'm upgrading from 3.10.0 to 3.10.1. When I try to run
php update/common/scripts/3.10/fixobjectremoteid.php -s fr
There this error
Parse error: syntax error, unexpected T_CLONE, expecting T_STRING in /var/www/ezpublish-3.10.1/kernel/classes/ezcontentobject.php on line 1418
and on line 1418, I have this function
.....
function clone()
{
$contentObject = $this;
$contentObject->setAttribute( 'id', null );
$contentObject->setAttribute( 'published', time() );
$contentObject->setAttribute( 'modified', time() );
return $contentObject;
}
...
What can I do?
|