BUG 5285 I changed varibale $pro_subprocess

I changed varibale $pro_subprocess
This commit is contained in:
Brayan Osmar Pereyra Suxo
2012-10-12 09:25:37 -04:00
parent 38a521f6d3
commit fc51b4049f

View File

@@ -91,7 +91,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
* The value for the pro_subprocess field. * The value for the pro_subprocess field.
* @var int * @var int
*/ */
protected $pro_subprocess = 1; protected $pro_subprocess = 0;
/** /**
* The value for the pro_show_delegate field. * The value for the pro_show_delegate field.
@@ -754,7 +754,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
$v = (int) $v; $v = (int) $v;
} }
if ($this->pro_subprocess !== $v || $v === 1) { if ($this->pro_subprocess !== $v || $v === 0) {
$this->pro_subprocess = $v; $this->pro_subprocess = $v;
$this->modifiedColumns[] = ProcessPeer::PRO_SUBPROCESS; $this->modifiedColumns[] = ProcessPeer::PRO_SUBPROCESS;
} }