aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/ElggSite.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-09 18:14:56 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-09 18:14:56 +0000
commitec50bfab16789557d7a94e54854bd4b62480fbbf (patch)
tree5f05ad43752ede9b78180eda66c9e25f610b9490 /engine/classes/ElggSite.php
parent83a52e95ad661aec1576f7c65e3bbb7ed6189562 (diff)
downloadelgg-ec50bfab16789557d7a94e54854bd4b62480fbbf.tar.gz
elgg-ec50bfab16789557d7a94e54854bd4b62480fbbf.tar.bz2
Fixes #2721 fixed typo - thanks for the report!
git-svn-id: http://code.elgg.org/elgg/trunk@7582 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes/ElggSite.php')
-rw-r--r--engine/classes/ElggSite.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/classes/ElggSite.php b/engine/classes/ElggSite.php
index 68a720bfe..6ab6a9aef 100644
--- a/engine/classes/ElggSite.php
+++ b/engine/classes/ElggSite.php
@@ -209,8 +209,8 @@ class ElggSite extends ElggEntity {
* @return array of ElggUsers
*/
public function getMembers($options = array(), $offset = 0) {
- if (!is_array($limit)) {
- elgg_deprecated_notice("ElggSite::getMembers has a different arguments!", 1.8);
+ if (!is_array($options)) {
+ elgg_deprecated_notice("ElggSite::getMembers uses different arguments!", 1.8);
$options = array(
'limit' => $options,
'offset' => $offset,