]> git.mxchange.org Git - friendica.git/commitdiff
Fix indenting
authorMichael <heluecht@pirati.ca>
Sat, 16 Jun 2018 06:27:20 +0000 (06:27 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 16 Jun 2018 06:27:20 +0000 (06:27 +0000)
mod/ping.php

index 01286013b82ce8545576d413154436568abd2631..6148645292c3d64d77917d60c649e2c3b47b16f6 100644 (file)
@@ -131,7 +131,7 @@ function ping_init(App $a)
                $condition = ["`unseen` AND `uid` = ? AND `contact-id` != ?", local_user(), local_user()];
                $fields = ['id', 'parent', 'verb', 'author-name', 'unseen', 'author-link', 'author-avatar', 'contact-avatar',
                        'network', 'created', 'object', 'parent-author-name', 'parent-author-link', 'parent-guid'];
-                $params = ['order' => ['created' => true]];
+               $params = ['order' => ['created' => true]];
                 $items = Item::select(local_user(), $fields, $condition, $params);
 
                if (DBM::is_result($items)) {