Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-04-22 21:41:35 +0400
committerArthur Schiwon <blizzz@owncloud.com>2014-06-02 14:53:57 +0400
commitf9f95509695c6ae654addfdab01dceb48f41ce56 (patch)
tree5fd1e528e07e92e95f820f9b1f946da3518db8bf /settings/users.php
parentf2fed6de4e186f3f5ff66bc727d5576827433c16 (diff)
small fixes / cleanup
Diffstat (limited to 'settings/users.php')
-rw-r--r--settings/users.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/settings/users.php b/settings/users.php
index f9655793e2f..8f72fc9d5c8 100644
--- a/settings/users.php
+++ b/settings/users.php
@@ -22,17 +22,6 @@ $users = array();
$userManager = \OC_User::getManager();
$groupManager = \OC_Group::getManager();
-if (isset($_GET['offset'])) {
- $offset = $_GET['offset'];
-} else {
- $offset = 0;
-}
-if (isset($_GET['limit'])) {
- $limit = $_GET['limit'];
-} else {
- $limit = 10;
-}
-
$isAdmin = OC_User::isAdminUser(OC_User::getUser());
$groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), $isAdmin, $groupManager);