Merged in dheeyi/processmaker/PM-1744 (pull request #1603)

PM-1744 No se pueden adjuntar archivos en el editor de Templates
This commit is contained in:
Julio Cesar Laura Avendaño
2015-03-06 12:45:36 -04:00

View File

@@ -36,8 +36,9 @@ function uploadContentFile()
$FileObject = $_FILES["upload_file"]; // find data on the file
$DestPath = sys_get_temp_dir();
$aux='';
$cadena=str_replace ("\r\n","",file_get_contents(htmlentities($FileObject['tmp_name'])));
updateEditorContent(trim($cadena));
$chain=str_replace ("\r\n","",file_get_contents(htmlentities($FileObject['tmp_name'])));
$chain=str_replace ('"',"'",$chain);
updateEditorContent(trim($chain));
closeWindow();
}