Little fix, typo in static class name call, OutputdocumentPeer -> OutputDocumentPeer
Is important call classes such as this was declared, for auto-loading reasons
This commit is contained in:
@@ -1597,8 +1597,8 @@ class Processes
|
||||
try {
|
||||
$aOutput = array ();
|
||||
$oCriteria = new Criteria( 'workflow' );
|
||||
$oCriteria->add( OutputdocumentPeer::PRO_UID, $sProUid );
|
||||
$oDataset = OutputdocumentPeer::doSelectRS( $oCriteria );
|
||||
$oCriteria->add( OutputDocumentPeer::PRO_UID, $sProUid );
|
||||
$oDataset = OutputDocumentPeer::doSelectRS( $oCriteria );
|
||||
$oDataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
|
||||
$oDataset->next();
|
||||
while ($aRow = $oDataset->getRow()) {
|
||||
|
||||
Reference in New Issue
Block a user