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:
Erik Amaru Ortiz
2014-03-24 12:00:40 -04:00
parent 98adaa6a4e
commit 9e4c3d5997

View File

@@ -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()) {