From 1babf49b4f283558b8ec346a6251763835758f3d Mon Sep 17 00:00:00 2001 From: "Paula V. Quispe" Date: Fri, 20 Feb 2015 09:54:56 -0400 Subject: [PATCH] I corrected the label OuputDocument by OutputDocument --- workflow/engine/classes/model/OutputDocument.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workflow/engine/classes/model/OutputDocument.php b/workflow/engine/classes/model/OutputDocument.php index 07e2d227f..7a0e2fd64 100755 --- a/workflow/engine/classes/model/OutputDocument.php +++ b/workflow/engine/classes/model/OutputDocument.php @@ -200,7 +200,7 @@ class OutputDocument extends BaseOutputDocument $genLink = 'Download the file'; } $description .= ", By clicking on the generated file link: ".$genLink; - G::auditLog("CreateOuputDocument", $description); + G::auditLog("CreateOutputDocument", $description); return $aData['OUT_DOC_UID']; } else { @@ -286,7 +286,7 @@ class OutputDocument extends BaseOutputDocument if (isset($aData['OUT_DOC_TEMPLATE'])) { $description .= ", [EDIT TEMPLATE]"; } - G::auditLog("UpdateOuputDocument", $description); + G::auditLog("UpdateOutputDocument", $description); return $iResult; } else { @@ -330,7 +330,7 @@ class OutputDocument extends BaseOutputDocument $iResult = $oOutputDocument->delete(); $oConnection->commit(); //Add Audit Log - G::auditLog("DeleteOuputDocument", "Output Document Name: ".$outputName.", Output Document Uid: ".$sOutDocUid.", Description: ".$outputDesc.", Filename generated: ".$outputFile); + G::auditLog("DeleteOutputDocument", "Output Document Name: ".$outputName.", Output Document Uid: ".$sOutDocUid.", Description: ".$outputDesc.", Filename generated: ".$outputFile); return $iResult; } else {