BUG 8251 Fix Bug the export process To discriminate chars doesn't allowed.
This commit is contained in:
@@ -2377,7 +2377,7 @@ class Processes {
|
|||||||
G::verifyPath($path, true);
|
G::verifyPath($path, true);
|
||||||
}
|
}
|
||||||
$proTitle = (substr(G::inflect($data->process['PRO_TITLE']), 0, 30));
|
$proTitle = (substr(G::inflect($data->process['PRO_TITLE']), 0, 30));
|
||||||
$proTitle = preg_replace("[^A-Za-z0-9_]", "", $proTitle);
|
$proTitle = preg_replace("/[^A-Za-z0-9_]/", "", $proTitle);
|
||||||
|
|
||||||
|
|
||||||
$index = '';
|
$index = '';
|
||||||
|
|||||||
@@ -322,7 +322,7 @@ class Xpdl extends processes
|
|||||||
G::verifyPath($path, true);
|
G::verifyPath($path, true);
|
||||||
}
|
}
|
||||||
$proTitle = (substr(G::inflect($oData->process['PRO_TITLE']), 0, 30));
|
$proTitle = (substr(G::inflect($oData->process['PRO_TITLE']), 0, 30));
|
||||||
$proTitle = preg_replace("[^A-Za-z0-9_]", "", $proTitle);
|
$proTitle = preg_replace("/[^A-Za-z0-9_]/", "", $proTitle);
|
||||||
$index = '';
|
$index = '';
|
||||||
$lastIndex = '';
|
$lastIndex = '';
|
||||||
do {
|
do {
|
||||||
|
|||||||
Reference in New Issue
Block a user