diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-20 21:20:32 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-20 21:20:32 -0500 |
commit | 9cca28b590a5884033c60af5a47aa3dcc383f7f0 (patch) | |
tree | 3b1a5f4dc1e3ffc4b40d568649c55b448b1c3a34 /views | |
parent | 1b15e9f33013cc5407ff7620989a3bb027348c41 (diff) | |
download | elgg-9cca28b590a5884033c60af5a47aa3dcc383f7f0.tar.gz elgg-9cca28b590a5884033c60af5a47aa3dcc383f7f0.tar.bz2 |
Refs #4293 removed unnecessary get_input('offset') calls since elgg_list_entities() calls that
Diffstat (limited to 'views')
-rw-r--r-- | views/default/core/settings/tools.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/views/default/core/settings/tools.php b/views/default/core/settings/tools.php index a249adf82..195db1d61 100644 --- a/views/default/core/settings/tools.php +++ b/views/default/core/settings/tools.php @@ -14,9 +14,6 @@ echo elgg_view('output/longtext', array( 'class' => 'user-settings mtn mbm', )); -$limit = get_input('limit', 10); -$offset = get_input('offset', 0); - // Get the installed plugins $installed_plugins = $vars['installed_plugins']; $count = count($installed_plugins); |