diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-01-06 17:52:54 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-01-06 17:52:54 +0100 |
commit | 8e488f726c6f6aaaf1b33c6bc53f7ecb417b0d28 (patch) | |
tree | 04d14d400df4bb5a02f7d294399a76d6088bc5cb | |
parent | e724b78694cb17c7a3ff4427ae103b01baa4688c (diff) | |
download | nextcloud-server-8e488f726c6f6aaaf1b33c6bc53f7ecb417b0d28.tar.gz nextcloud-server-8e488f726c6f6aaaf1b33c6bc53f7ecb417b0d28.zip |
revert changes to deprecated preferences as it is a not needed leftover
-rw-r--r-- | lib/private/preferences.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/private/preferences.php b/lib/private/preferences.php index 1784d372261..cd4a9fd1c19 100644 --- a/lib/private/preferences.php +++ b/lib/private/preferences.php @@ -137,12 +137,10 @@ class Preferences { * @param string $app * @param string $key * @param string $value - * @param int|null $limit - * @param int|null $offset * @return array * @deprecated use getUsersForUserValue of \OCP\IConfig instead */ - public function getUsersForValue($app, $key, $value, $limit = null, $offset = null) { + public function getUsersForValue($app, $key, $value) { return $this->config->getUsersForUserValue($app, $key, $value); } |