diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-10-26 16:23:41 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-10-26 16:23:41 +0200 |
commit | 7f58c41015dc152b04569d795389b4b0df8e3672 (patch) | |
tree | 31e3583ac776c22ef3b24311cc3c65ebf433b529 /lib/private/Collaboration | |
parent | aa2fd307752a704033bde229628c73bfa00ad217 (diff) | |
download | nextcloud-server-7f58c41015dc152b04569d795389b4b0df8e3672.tar.gz nextcloud-server-7f58c41015dc152b04569d795389b4b0df8e3672.zip |
fix sorting
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/private/Collaboration')
-rw-r--r-- | lib/private/Collaboration/AutoComplete/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Collaboration/AutoComplete/Manager.php b/lib/private/Collaboration/AutoComplete/Manager.php index f801ea23338..eedc4fb5b40 100644 --- a/lib/private/Collaboration/AutoComplete/Manager.php +++ b/lib/private/Collaboration/AutoComplete/Manager.php @@ -54,7 +54,7 @@ class Manager implements IManager { } public function registerSorter($className) { - $sorters[] = $className; + $this->sorters[] = $className; } protected function getSorters() { |