Forums / Developer / Workflow ezmultiplexertype.php bug in 3.2-2

Workflow ezmultiplexertype.php bug in 3.2-2

Author Message

sinisa podunavac

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

Willie Seabrook

Sunday 26 October 2003 10:41:31 pm

I have a file that fixes the multplexer type. If you would like it - email me at: willie [dot] seabrook [at] levity [dot] co [dot] nz

Regards,
Willie Seabrook