'inverse_relationship' => FALSE,
'type' => 'user',
'subtype' => $subtype,
- 'limit' => 9999))
+ 'limit' => false))
) {
$friendsarray = array();
'relationship_guid' => $object->container_guid,
'inverse_relationship' => TRUE,
'type' => 'user',
- 'limit' => 99999
+ 'limit' => false
));
if ($interested_users && is_array($interested_users)) {
'relationship' => 'member',
'relationship_guid' => $user_guid,
'inverse_relationship' => FALSE,
- 'limit' => 999
+ 'limit' => false
));
if ($groups) {
'relationship' => 'member',
'relationship_guid' => $user->guid,
'type' => 'group',
- 'limit' => 9999,
+ 'limit' => false,
);
if ($groupmemberships = elgg_get_entities_from_relationship($options)) {
foreach($groupmemberships as $groupmembership) {
'relationship' => 'member',
'relationship_guid' => $user->guid,
'type' => 'group',
- 'limit' => 9999,
+ 'limit' => false,
));
$body = elgg_view_form('notificationsettings/groupsave', array(), array(
'relationship' => 'notify',
'relationship_guid' => $user->guid,
'type' => 'user',
- 'limit' => 99999,
+ 'limit' => false,
))) {
foreach($people_ents as $ent) {
'relationship' => 'notify' . $method,
'relationship_guid' => $user->guid,
'type' => 'group',
- 'limit' => 99999,
+ 'limit' => false,
));
$tmparray = array();
if ($subsbig[$method]) {
'relationship' => 'notify' . $method,
'relationship_guid' => $user->guid,
'type' => 'user',
- 'limit' => 99999,
+ 'limit' => false,
));
}