diff options
author | Pablo Martin <caedes@sindominio.net> | 2010-09-06 17:27:31 +0200 |
---|---|---|
committer | root <root@migration.vz.lan> | 2012-10-24 13:23:25 +0000 |
commit | a6e20a9e85ac925de0ef59b4c69e5436f1661c5f (patch) | |
tree | 9b2213476a696b247629841a12a826f3c7265835 | |
parent | add9814caac2fe102a951574fe5d8c40ec8b4237 (diff) | |
download | elgg-a6e20a9e85ac925de0ef59b4c69e5436f1661c5f.tar.gz elgg-a6e20a9e85ac925de0ef59b4c69e5436f1661c5f.tar.bz2 |
fix error
-rw-r--r-- | actions/get_statuses.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/get_statuses.php b/actions/get_statuses.php index c328e44b7..6f7620beb 100644 --- a/actions/get_statuses.php +++ b/actions/get_statuses.php @@ -16,7 +16,7 @@ { $iconSize = 'small'; $rosterItemsUsernames = explode(',', $usernames); - $userFriendsEntities = $_SESSION['user']->getFriends('', count($rosterItemsUsernames), 0); + $userFriendsEntities = $_SESSION['user']->getFriends('', 1000000000, 0); $res = array(); foreach ($rosterItemsUsernames as $value) |