From 690d15de2c0ed4042a4b6590845974cd89909b46 Mon Sep 17 00:00:00 2001 From: Hector Cortez Date: Thu, 7 Feb 2013 17:24:28 -0400 Subject: [PATCH] BUG 10658 Error al ejecutar la funcion PMFGenerateOutputDocument() SOLVED - Al ejecutar la funcion PMFGenerateOutputDocument() el processmaker devuelve un error de php - Fixing bug of the notice in the output document generation. --- workflow/engine/classes/model/OutputDocument.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/classes/model/OutputDocument.php b/workflow/engine/classes/model/OutputDocument.php index f34bb9651..546466559 100755 --- a/workflow/engine/classes/model/OutputDocument.php +++ b/workflow/engine/classes/model/OutputDocument.php @@ -922,7 +922,7 @@ class OutputDocument extends BaseOutputDocument define('PATH_OUTPUT_FILE_DIRECTORY', PATH_HTML . 'files/' . $_SESSION['APPLICATION'] . '/outdocs/'); G::verifyPath(PATH_OUTPUT_FILE_DIRECTORY, true); require_once (PATH_THIRDPARTY . 'html2ps_pdf/config.inc.php'); - require_once (PATH_THIRDPARTY . 'html2ps_pdf/pipeline.factory.class.php'); + @require_once (PATH_THIRDPARTY . 'html2ps_pdf/pipeline.factory.class.php'); parse_config_file(PATH_THIRDPARTY . 'html2ps_pdf/html2ps.config');