diff options
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/group.php | 4 | ||||
-rw-r--r-- | engine/lib/pageowner.php | 3 |
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) {
|