@@ -3723,6 +3723,7 @@ class Processes
|
|||||||
$rsCriteria->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
$rsCriteria->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
||||||
$rsCriteria->next();
|
$rsCriteria->next();
|
||||||
while ($aRow = $rsCriteria->getRow()) {
|
while ($aRow = $rsCriteria->getRow()) {
|
||||||
|
$aRow['PRF_PATH'] = str_replace("\\", "/", $aRow['PRF_PATH']);
|
||||||
$arrayFilesManager[] = $aRow;
|
$arrayFilesManager[] = $aRow;
|
||||||
$rsCriteria->next();
|
$rsCriteria->next();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,10 +60,10 @@ class FileHandler
|
|||||||
if ($target == "PUBLIC" && in_array($filename, $arrayPublicFileToExclude)) {
|
if ($target == "PUBLIC" && in_array($filename, $arrayPublicFileToExclude)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
$filePath = $prj_uid . PATH_SEP . $filename;
|
||||||
$workflowFile[$target][] = array(
|
$workflowFile[$target][] = array(
|
||||||
"filename" => $filename,
|
"filename" => $filename,
|
||||||
"filepath" => $prj_uid . PATH_SEP . $filename,
|
"filepath" => str_replace("\\", "/", $filePath),
|
||||||
"file_content" => file_get_contents($templatesFile)
|
"file_content" => file_get_contents($templatesFile)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1230,10 +1230,10 @@ class Workflow extends Handler
|
|||||||
if ($target == "PUBLIC" && in_array($filename, $arrayPublicFileToExclude)) {
|
if ($target == "PUBLIC" && in_array($filename, $arrayPublicFileToExclude)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
$filePath = $processUid . PATH_SEP . $filename;
|
||||||
$workflowFile[$target][] = array(
|
$workflowFile[$target][] = array(
|
||||||
"filename" => $filename,
|
"filename" => $filename,
|
||||||
"filepath" => $processUid . PATH_SEP . $filename,
|
"filepath" => str_replace("\\", "/", $filePath),
|
||||||
"file_content" => file_get_contents($templatesFile)
|
"file_content" => file_get_contents($templatesFile)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user