]> git.mxchange.org Git - friendica.git/commitdiff
Remove hostname blacklisting
authorPhilipp Holzer <admin@philipp.info>
Wed, 10 Apr 2019 22:09:59 +0000 (00:09 +0200)
committerPhilipp Holzer <admin@philipp.info>
Wed, 10 Apr 2019 22:09:59 +0000 (00:09 +0200)
src/Core/Config/Configuration.php

index c6fe626d91e441f1033142e64bda5e2ce6b526ac..532ed982a9d46498d3de738e741f58db33b26cbc 100644 (file)
@@ -10,16 +10,6 @@ namespace Friendica\Core\Config;
  */
 class Configuration
 {
-       /**
-        * The blacklist of configuration settings, which should not get saved to the backend
-        * @var array
-        */
-       private $configSaveBlacklist = [
-               'config' => [
-                       'hostname' => true,
-               ]
-       ];
-
        /**
         * @var Cache\IConfigCache
         */
@@ -127,7 +117,7 @@ class Configuration
                $cached = $this->configCache->set($cat, $key, $value);
 
                // If there is no connected adapter, we're finished
-               if (!$this->configAdapter->isConnected() || !empty($this->configSaveBlacklist[$cat][$key])) {
+               if (!$this->configAdapter->isConnected()) {
                        return $cached;
                }