diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-01-15 14:02:18 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-02-11 10:49:27 +0100 |
commit | 1d0a2365631955944d746b4567cac85eb10a80db (patch) | |
tree | 0b21a6be0be4614aeaeda775311c29d8411a0d5c /core | |
parent | 71e4d965a1d468ac01b404f233397def3b580ab2 (diff) | |
download | nextcloud-server-1d0a2365631955944d746b4567cac85eb10a80db.tar.gz nextcloud-server-1d0a2365631955944d746b4567cac85eb10a80db.zip |
respect coding guidelines
Diffstat (limited to 'core')
-rw-r--r-- | core/ajax/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php index 784b2528f40..5c2dbc6654d 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -377,7 +377,7 @@ function sortSearchFirst($a, $b) { if($i === $j) { return 0; - } else if ($i === 0) { + } elseif ($i === 0) { return -1; } else { return 1; |