Fix warnings - function arguments should expect values instead of references

This commit is contained in:
Zach Copley 2011-08-23 09:39:05 -07:00
parent 65df78d5c8
commit 1507c32454
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}