git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@4907 a333f486-631f-4898-b8df-5754b55c2be0
@@ -191,8 +191,15 @@ class ormCaseLog {
public function __toString()
{
- return $this->m_sLog;
+ if($this->IsEmpty()) return '';
+
+ return $this->m_sLog;
}
+ public function IsEmpty()
+ {
+ return ($this->m_sLog === null);
+ }
public function ClearModifiedFlag()
@@ -51,6 +51,8 @@ class ormDocument
return MyHelpers::beautifulstr($this->m_data, 100, true);