Fix deprecated call-time pass by references

This commit is contained in:
Zach Copley 2011-08-23 09:52:48 -07:00
parent 9535f0d0e3
commit 307a75e3a7
1 changed files with 2 additions and 2 deletions

View File

@ -2643,7 +2643,7 @@ class Notice extends Managed_DataObject
}
foreach ($notices as $notice) {
$faves = $faveMap[$notice->id];
$notice->_setFaves(&$faves);
$notice->_setFaves($faves);
}
}
@ -2684,7 +2684,7 @@ class Notice extends Managed_DataObject
$repeatMap = Memcached_DataObject::listGet('Notice', 'repeat_of', $ids);
foreach ($notices as $notice) {
$repeats = $repeatMap[$notice->id];
$notice->_setRepeats(&$repeats);
$notice->_setRepeats($repeats);
}
}
}