aboutsummaryrefslogtreecommitdiff
path: root/engine/lib
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-04 15:30:38 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-04 15:30:38 +0000
commit7858fb3f2017b0d42c56cac16328c35f7d287b11 (patch)
tree0bb5e47f7ec0c56a85c25df6f3a6e68c9ce45ac9 /engine/lib
parent688a1e02a89e25caba37c91be7ac56d7bdc6dc4a (diff)
downloadelgg-7858fb3f2017b0d42c56cac16328c35f7d287b11.tar.gz
elgg-7858fb3f2017b0d42c56cac16328c35f7d287b11.tar.bz2
Refs #109: Group members widget.
git-svn-id: https://code.elgg.org/elgg/trunk@1294 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r--engine/lib/group.php4
-rw-r--r--engine/lib/pageowner.php3
2 files changed, 4 insertions, 3 deletions
diff --git a/engine/lib/group.php b/engine/lib/group.php
index 9cb66a871..134206b02 100644
--- a/engine/lib/group.php
+++ b/engine/lib/group.php
@@ -142,9 +142,9 @@
* @param int $offset
* @return mixed
*/
- public function getMembers($limit = 10, $offset = 0)
+ public function getMembers($limit = 10, $offset = 0, $count = false)
{
- return get_group_members($this->getGUID(), $limit, $offset);
+ return get_group_members($this->getGUID(), $limit, $offset, 0 , $count);
}
/**
diff --git a/engine/lib/pageowner.php b/engine/lib/pageowner.php
index c6bd5bcaf..dab7110e0 100644
--- a/engine/lib/pageowner.php
+++ b/engine/lib/pageowner.php
@@ -73,7 +73,8 @@
* return the page owner if required
* (Such functions are required to return false if they don't know)
* @uses $CONFIG
- * @param string $functionname The name of the function to call
+ * @param string $functionname The name of the function to call
+ * @return mixed The guid of the owner or false
*/
function add_page_owner_handler($functionname) {