More OAuth2 updates (not functional yet)

This commit is contained in:
Erik Amaru Ortiz
2013-09-26 15:01:15 -04:00
parent cf56a7be60
commit ba39a27904
4 changed files with 36 additions and 18 deletions

View File

@@ -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 = '';
}
}

View File

@@ -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;
}