diff options
Diffstat (limited to 'lib/private/Comments/Manager.php')
-rw-r--r-- | lib/private/Comments/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Comments/Manager.php b/lib/private/Comments/Manager.php index eae84c14335..a8c4e2bf09e 100644 --- a/lib/private/Comments/Manager.php +++ b/lib/private/Comments/Manager.php @@ -108,7 +108,7 @@ class Manager implements ICommentsManager { // Ordering does not work on the database with group concat and Oracle, // So we simply sort on the output. if (is_array($list)) { - uasort($list, static function($a, $b) { + uasort($list, static function ($a, $b) { if ($a === $b) { return 0; } |