forked from GNUsocial/gnu-social
Fix deprecated call-time pass by references
This commit is contained in:
parent
9535f0d0e3
commit
307a75e3a7
@ -2643,7 +2643,7 @@ class Notice extends Managed_DataObject
|
|||||||
}
|
}
|
||||||
foreach ($notices as $notice) {
|
foreach ($notices as $notice) {
|
||||||
$faves = $faveMap[$notice->id];
|
$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);
|
$repeatMap = Memcached_DataObject::listGet('Notice', 'repeat_of', $ids);
|
||||||
foreach ($notices as $notice) {
|
foreach ($notices as $notice) {
|
||||||
$repeats = $repeatMap[$notice->id];
|
$repeats = $repeatMap[$notice->id];
|
||||||
$notice->_setRepeats(&$repeats);
|
$notice->_setRepeats($repeats);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user