Index: branches/5.2.x/core/units/users/users_item.php =================================================================== diff -u -N -r13840 -r14095 --- branches/5.2.x/core/units/users/users_item.php (.../users_item.php) (revision 13840) +++ branches/5.2.x/core/units/users/users_item.php (.../users_item.php) (revision 14095) @@ -1,6 +1,6 @@ Application->recallObjectP('UsersSyncronizeManager', null, Array(), 'InPortalSyncronize'); + $sync_manager =& $this->Application->recallObject('UsersSyncronizeManager', null, Array(), Array ('InPortalSyncronize')); $sync_manager->performAction('createUser', $this->FieldValues); } return $ret; @@ -93,7 +93,7 @@ $ret = parent::Update($id, $system_update); if ($ret) { // find out how to syncronize user only when it's copied to live table - $sync_manager =& $this->Application->recallObjectP('UsersSyncronizeManager', null, Array(), 'InPortalSyncronize'); + $sync_manager =& $this->Application->recallObject('UsersSyncronizeManager', null, Array(), Array ('InPortalSyncronize')); $sync_manager->performAction('updateUser', $this->FieldValues); } return $ret; @@ -109,7 +109,7 @@ { $ret = parent::Delete($id); if ($ret) { - $sync_manager =& $this->Application->recallObjectP('UsersSyncronizeManager', null, Array(), 'InPortalSyncronize'); + $sync_manager =& $this->Application->recallObject('UsersSyncronizeManager', null, Array(), Array ('InPortalSyncronize')); $sync_manager->performAction('deleteUser', $this->FieldValues); }