diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-09 18:14:56 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-09 18:14:56 +0000 |
commit | ec50bfab16789557d7a94e54854bd4b62480fbbf (patch) | |
tree | 5f05ad43752ede9b78180eda66c9e25f610b9490 /engine | |
parent | 83a52e95ad661aec1576f7c65e3bbb7ed6189562 (diff) | |
download | elgg-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')
-rw-r--r-- | engine/classes/ElggSite.php | 4 |
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, |