Fix limit en PM USER

This commit is contained in:
Freddy Daniel Rojas Valda
2014-02-13 15:56:26 -04:00
parent f2c105d528
commit 5a8d9b837d
2 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ class User extends Api
{
try {
$user = new \BusinessModel\User();
$response = $user->getUsers($filter, null, null, $start, $limit);
$response = $user->getUsers($filter, $start, $limit);
return $response;
} catch (\Exception $e) {
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));