BUG 0000 new Feature: Report table ver 2 (fixes)

- update phisical table fixed
This commit is contained in:
Erik Amaru Ortiz
2011-06-29 12:46:51 -04:00
parent 172bd87580
commit db2ff5a36a
18 changed files with 436 additions and 203 deletions

View File

@@ -53,7 +53,7 @@ abstract class BaseTranslation extends BaseObject implements Persistent {
* The value for the trn_value field.
* @var string
*/
protected $trn_value = '';
protected $trn_value;
/**
@@ -232,7 +232,7 @@ abstract class BaseTranslation extends BaseObject implements Persistent {
$v = (string) $v;
}
if ($this->trn_value !== $v || $v === '') {
if ($this->trn_value !== $v) {
$this->trn_value = $v;
$this->modifiedColumns[] = TranslationPeer::TRN_VALUE;
}