Wrong whitespaces
This commit is contained in:
parent
62bd32c1ac
commit
a5923bdd4f
2 changed files with 6 additions and 6 deletions
|
@ -126,9 +126,9 @@ class Config {
|
||||||
public static function set($family, $key, $value) {
|
public static function set($family, $key, $value) {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
if (self::get($family, $key) === $value) {
|
if (self::get($family, $key) === $value) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$a->config[$family][$key] = $value;
|
$a->config[$family][$key] = $value;
|
||||||
|
|
||||||
|
|
|
@ -123,9 +123,9 @@ class PConfig {
|
||||||
|
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
if (self::get($uid, $family, $key) === $value) {
|
if (self::get($uid, $family, $key) === $value) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// manage array value
|
// manage array value
|
||||||
$dbvalue = (is_array($value)?serialize($value):$value);
|
$dbvalue = (is_array($value)?serialize($value):$value);
|
||||||
|
|
Loading…
Reference in a new issue