HOR-3295
This commit is contained in:
@@ -67,19 +67,19 @@ abstract class BaseListPaused extends BaseObject implements Persistent
|
||||
* The value for the app_title field.
|
||||
* @var string
|
||||
*/
|
||||
protected $app_title = '';
|
||||
protected $app_title;
|
||||
|
||||
/**
|
||||
* The value for the app_pro_title field.
|
||||
* @var string
|
||||
*/
|
||||
protected $app_pro_title = '';
|
||||
protected $app_pro_title;
|
||||
|
||||
/**
|
||||
* The value for the app_tas_title field.
|
||||
* @var string
|
||||
*/
|
||||
protected $app_tas_title = '';
|
||||
protected $app_tas_title;
|
||||
|
||||
/**
|
||||
* The value for the app_paused_date field.
|
||||
@@ -718,7 +718,7 @@ abstract class BaseListPaused extends BaseObject implements Persistent
|
||||
$v = (string) $v;
|
||||
}
|
||||
|
||||
if ($this->app_title !== $v || $v === '') {
|
||||
if ($this->app_title !== $v) {
|
||||
$this->app_title = $v;
|
||||
$this->modifiedColumns[] = ListPausedPeer::APP_TITLE;
|
||||
}
|
||||
@@ -740,7 +740,7 @@ abstract class BaseListPaused extends BaseObject implements Persistent
|
||||
$v = (string) $v;
|
||||
}
|
||||
|
||||
if ($this->app_pro_title !== $v || $v === '') {
|
||||
if ($this->app_pro_title !== $v) {
|
||||
$this->app_pro_title = $v;
|
||||
$this->modifiedColumns[] = ListPausedPeer::APP_PRO_TITLE;
|
||||
}
|
||||
@@ -762,7 +762,7 @@ abstract class BaseListPaused extends BaseObject implements Persistent
|
||||
$v = (string) $v;
|
||||
}
|
||||
|
||||
if ($this->app_tas_title !== $v || $v === '') {
|
||||
if ($this->app_tas_title !== $v) {
|
||||
$this->app_tas_title = $v;
|
||||
$this->modifiedColumns[] = ListPausedPeer::APP_TAS_TITLE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user