PMCORE-3876 Check Backward Incompatible Changes, specially "String to Number Comparison"
This commit is contained in:
@@ -279,7 +279,7 @@ class ProcessProxy extends HttpProxyController
|
||||
switch ($httpData->type) {
|
||||
case 'process':
|
||||
|
||||
$oProcessMap = new ProcessMap( new DBConnection() );
|
||||
$oProcessMap = new ProcessMap();
|
||||
$process = $oProcessMap->editProcessNew( $httpData->UID );
|
||||
$category = ProcessCategoryPeer::retrieveByPk( $process['PRO_CATEGORY'] );
|
||||
$categoryName = is_object( $category ) ? $category->getCategoryName() : '';
|
||||
@@ -404,7 +404,7 @@ class ProcessProxy extends HttpProxyController
|
||||
*/
|
||||
public function getPMVariables ($param)
|
||||
{
|
||||
$oProcessMap = new ProcessMap( new DBConnection() );
|
||||
$oProcessMap = new ProcessMap();
|
||||
$rows = getDynaformsVars( $param->PRO_UID );
|
||||
foreach ($rows as $i => $var) {
|
||||
$rows[$i]['sName'] = "@@{$var['sName']}";
|
||||
|
||||
Reference in New Issue
Block a user