]> git.mxchange.org Git - friendica.git/commitdiff
Wrong whitespaces
authorHypolite Petovan <mrpetovan@gmail.com>
Mon, 17 Oct 2016 21:00:06 +0000 (17:00 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 17 Oct 2016 21:00:06 +0000 (17:00 -0400)
include/Core/Config.php
include/Core/PConfig.php

index 46972e1eb731947ce219b2eb90309b36eec16105..2f99c1aec4ffa7a79a65834ab888bf9d67e0f66b 100644 (file)
@@ -126,9 +126,9 @@ class Config {
        public static function set($family, $key, $value) {
                global $a;
 
-        if (self::get($family, $key) === $value) {
-            return true;
-        }
+               if (self::get($family, $key) === $value) {
+                       return true;
+               }
 
                $a->config[$family][$key] = $value;
 
index 1d0f7fc82c2bb6fffe5bb5f059d7593bb379e16e..4523045f60e13a228ae67509d433f30917c3e392 100644 (file)
@@ -123,9 +123,9 @@ class PConfig {
 
                global $a;
 
-        if (self::get($uid, $family, $key) === $value) {
-            return true;
-        }
+               if (self::get($uid, $family, $key) === $value) {
+                       return true;
+               }
 
                // manage array value
                $dbvalue = (is_array($value)?serialize($value):$value);