Synchro Data Sources Implementation on going...

SVN:trunk[1100]
This commit is contained in:
Denis Flaven
2011-03-01 09:01:44 +00:00
parent a1b9bdaf66
commit f3f2eb5c79
7 changed files with 201 additions and 39 deletions

View File

@@ -349,7 +349,12 @@ abstract class DBObject
// #@# non-scalar attributes.... handle that differently
$this->Reload();
}
return $this->m_aCurrValues[$sAttCode];
$value = $this->m_aCurrValues[$sAttCode];
if ($value instanceof DBObjectSet)
{
$value->Rewind();
}
return $value;
}
public function GetOriginal($sAttCode)