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:
authorkondou <kondou@ts.unde.re>2013-04-17 17:32:03 +0400
committerkondou <kondou@ts.unde.re>2013-07-21 15:55:25 +0400
commit05084e03a08206b736abd04522e10c97cd3f2fc3 (patch)
tree1352f5011a523db520ee0e899db8426ecc3fc68f /settings/users.php
parent94fcbc736e3500e0107d8e4f1ce5a2133fcdd8d8 (diff)
Use !== and === in settings.
Diffstat (limited to 'settings/users.php')
-rw-r--r--settings/users.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/users.php b/settings/users.php
index e5c8a7aaa8d..ba79ae93b28 100644
--- a/settings/users.php
+++ b/settings/users.php
@@ -52,7 +52,7 @@ foreach($accessibleusers as $uid => $displayName) {
&& array_search($quota, array('none', 'default'))===false;
$name = $displayName;
- if ( $displayName != $uid ) {
+ if ( $displayName !== $uid ) {
$name = $name . ' ('.$uid.')';
}