5. Change default value of HIDE_INFORMATION_BAR to 1 (To maintain same configuration of webentry1 registers)
This commit is contained in:
davidcallizaya
2017-06-04 12:49:38 -04:00
parent ab82f369e6
commit 479ee81780
3 changed files with 4 additions and 4 deletions

View File

@@ -121,7 +121,7 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
* The value for the we_hide_information_bar field.
* @var string
*/
protected $we_hide_information_bar = '0';
protected $we_hide_information_bar = '1';
/**
* The value for the we_callback field.
@@ -816,7 +816,7 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
$v = (string) $v;
}
if ($this->we_hide_information_bar !== $v || $v === '0') {
if ($this->we_hide_information_bar !== $v || $v === '1') {
$this->we_hide_information_bar = $v;
$this->modifiedColumns[] = WebEntryPeer::WE_HIDE_INFORMATION_BAR;
}