joinAdd calls DB_DataObject::factory directly so no GS_DataObject override

This commit is contained in:
Mikael Nordfeldth 2015-06-06 19:41:23 +02:00
parent daaafd86e2
commit 06503cc11b
1 changed files with 14 additions and 0 deletions

View File

@ -137,6 +137,20 @@ class GS_DataObject extends DB_DataObject
return $res;
}
// DB_DataObject's joinAdd calls DB_DataObject::factory explicitly, so our factory-override doesn't work
public function joinAdd($obj = false, $joinType='INNER', $joinAs=false, $joinCol=false)
{
// avoid those annoying PEAR::DB strict standards warnings it causes
$old = error_reporting();
error_reporting(error_reporting() & ~E_STRICT);
$res = parent::joinAdd($obj, $joinType, $joinAs, $joinCol);
// reset
error_reporting($old);
return $res;
}
public function links()
{
// avoid those annoying PEAR::DB strict standards warnings it causes