فهرست منبع

Internal issue: automated tests generating lots of warning

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@1647 a333f486-631f-4898-b8df-5754b55c2be0
romainq 13 سال پیش
والد
کامیت
6b24c0928e
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      core/dbobject.class.php

+ 1 - 2
core/dbobject.class.php

@@ -145,8 +145,7 @@ abstract class DBObject
 	{
 		foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode=>$oAttDef)
 		{
-			@$bIsLoaded = $this->m_aLoadedAtt[$sAttCode];
-			if ($bIsLoaded !== true)
+			if (!isset($this->m_aLoadedAtt[$sAttCode]) || !$this->m_aLoadedAtt[$sAttCode])
 			{
 				return false;
 			}