Merged colosa/processmaker into master

This commit is contained in:
jonathan quispe
2015-03-06 13:45:18 -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();
}