diff --git a/gulliver/system/class.bootstrap.php b/gulliver/system/class.bootstrap.php
index 5f5861ae6..8c8fb8775 100644
--- a/gulliver/system/class.bootstrap.php
+++ b/gulliver/system/class.bootstrap.php
@@ -1078,7 +1078,7 @@ class Bootstrap
$rest->setSupportedFormats('JsonFormat', 'XmlFormat'); //, 'HtmlFormat');
//$rest->setOverridingFormats('UploadFormat', 'JsonFormat', 'XmlFormat', 'HtmlFormat');
- $rest->setOverridingFormats('HtmlFormat');
+ $rest->setOverridingFormats('HtmlFormat', 'JsonFormat', 'UploadFormat');
$_SERVER['REQUEST_URI'] = $uri;
diff --git a/workflow/engine/classes/model/om/BaseConfiguration.php b/workflow/engine/classes/model/om/BaseConfiguration.php
index cf5250d19..7c5e79a84 100755
--- a/workflow/engine/classes/model/om/BaseConfiguration.php
+++ b/workflow/engine/classes/model/om/BaseConfiguration.php
@@ -823,20 +823,5 @@ abstract class BaseConfiguration extends BaseObject implements Persistent
}
return self::$peer;
}
-
- /**
- * Set properties related to Configuration table
- *
- * @return void
- */
- public function setProperties()
- {
- $this->cfg_uid = '';
- $this->obj_uid = '';
- $this->cfg_value = '';
- $this->pro_uid = '';
- $this->usr_uid = '';
- $this->app_uid = '';
- }
}
diff --git a/workflow/engine/classes/model/om/BaseTask.php b/workflow/engine/classes/model/om/BaseTask.php
index f15c778a2..9ba6c01e8 100755
--- a/workflow/engine/classes/model/om/BaseTask.php
+++ b/workflow/engine/classes/model/om/BaseTask.php
@@ -103,7 +103,7 @@ abstract class BaseTask extends BaseObject implements Persistent
* The value for the tas_group_variable field.
* @var string
*/
- protected $tas_group_variable = '@@SYS_GROUP_TO_BE_ASSIGNED';
+ protected $tas_group_variable;
/**
* The value for the tas_mi_instance_variable field.
@@ -1090,7 +1090,7 @@ abstract class BaseTask extends BaseObject implements Persistent
$v = (string) $v;
}
- if ($this->tas_group_variable !== $v || $v === '@@SYS_GROUP_TO_BE_ASSIGNED') {
+ if ($this->tas_group_variable !== $v) {
$this->tas_group_variable = $v;
$this->modifiedColumns[] = TaskPeer::TAS_GROUP_VARIABLE;
}
diff --git a/workflow/engine/config/schema.xml b/workflow/engine/config/schema.xml
index 20b163643..87d804456 100755
--- a/workflow/engine/config/schema.xml
+++ b/workflow/engine/config/schema.xml
@@ -3009,4 +3009,37 @@