Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-01-15 17:02:18 +0400
committerArthur Schiwon <blizzz@owncloud.com>2014-02-10 17:53:58 +0400
commitc6687e159b522d5a6879d5eb9c4930f6bc847c7d (patch)
tree71942eef746e7e780a379b0f2cc8af9258a4d280
parent8227bc41cddc4ce5437c568573f4c6e8a8f14e03 (diff)
respect coding guidelines
-rw-r--r--core/ajax/share.php2
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;