Cleanup: obsolescence of "key_label" property on persistent classes

SVN:trunk[473]
This commit is contained in:
Romain Quetiez
2010-06-23 14:32:54 +00:00
parent 4cb5651dca
commit d58a82c6c2
25 changed files with 51 additions and 105 deletions

View File

@@ -320,8 +320,11 @@ abstract class DBObject
return;
}
}
$this->m_aCurrValues[$sAttCode] = $oAttDef->MakeRealValue($value);
$this->RegisterAsDirty(); // Make sure we do not reload it anymore... before saving it
if ($oAttDef->CheckValue($value))
{
$this->m_aCurrValues[$sAttCode] = $oAttDef->MakeRealValue($value);
$this->RegisterAsDirty(); // Make sure we do not reload it anymore... before saving it
}
}
public function Get($sAttCode)