PM 940 "ProcessMaker" Email Server Frontend" SOLVED

> Se agrega marcas para el modulo Email Server para la version de la Comunidad.
This commit is contained in:
Luis Fernando Saisa Lopez
2015-01-15 17:01:37 -04:00
parent 5d0f35ced3
commit 40178fdc1f
9 changed files with 163 additions and 45 deletions

View File

@@ -85,7 +85,7 @@ abstract class BaseEmailServer extends BaseObject implements Persistent
* The value for the smtpsecure field.
* @var string
*/
protected $smtpsecure = '';
protected $smtpsecure = 'No';
/**
* The value for the mess_try_send_inmediatly field.
@@ -475,7 +475,7 @@ abstract class BaseEmailServer extends BaseObject implements Persistent
$v = (string) $v;
}
if ($this->smtpsecure !== $v || $v === '') {
if ($this->smtpsecure !== $v || $v === 'No') {
$this->smtpsecure = $v;
$this->modifiedColumns[] = EmailServerPeer::SMTPSECURE;
}