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