From: Chuck Hagenbuch Date: Wed, 9 Sep 2009 03:45:35 +0000 (-0400) Subject: fix a typo that was causing non-lazy relationships not to work X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1af141a42389e766576f8b37d362ace2bdab2b22;p=horde.git fix a typo that was causing non-lazy relationships not to work --- diff --git a/framework/Rdo/lib/Horde/Rdo/Mapper.php b/framework/Rdo/lib/Horde/Rdo/Mapper.php index 9c6f15156..a27c87b79 100644 --- a/framework/Rdo/lib/Horde/Rdo/Mapper.php +++ b/framework/Rdo/lib/Horde/Rdo/Mapper.php @@ -253,7 +253,7 @@ abstract class Horde_Rdo_Mapper implements Countable } if (isset($relationships[$m->table])) { - $o->$relationship = $m->map($relationships[$m->table]); + $object->$relationship = $m->map($relationships[$m->table]); } } }