Sunday 26 October 2003 4:23:18 am
Hi, I have found the problem below when upgrading to 3.2-2:
It seems that the code in ezmultiplexertype.php file (3.2-2) from line 175 is wrong:
$objectID = $processParameters['object_id'];
$object =& eZContentObject::fetch( $objectID );
$class =& $object->attribute( 'content_class' );
when I changed this lines to lines from ezmultiplexertype.php (3.1-1):
$node = & eZContentObjectTreeNode::fetch( $nodeID );
$objectID = $node->attribute( 'contentobject_id' );
$object =& $node->attribute( 'object'); $class =& $object->attribute( 'content_class' ); my multiplexer works again?
Regards Sinisa
|