From: Zach Copley Date: Tue, 23 Aug 2011 16:39:05 +0000 (-0700) Subject: Fix warnings - function arguments should expect values instead of references X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1507c324540b7e268ae55f842d64b16855b26167;p=quix0rs-gnu-social.git Fix warnings - function arguments should expect values instead of references --- diff --git a/classes/Notice.php b/classes/Notice.php index 0298cfdda3..3cbb2edd3d 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2624,7 +2624,7 @@ class Notice extends Managed_DataObject return $this->_faves; } - function _setFaves(&$faves) + function _setFaves($faves) { $this->_faves = $faves; } @@ -2673,7 +2673,7 @@ class Notice extends Managed_DataObject return $this->_repeats; } - function _setRepeats(&$repeats) + function _setRepeats($repeats) { $this->_repeats = $repeats; }