]> git.mxchange.org Git - friendica.git/blobdiff - update.php
update the release date in the CHANGELOG file
[friendica.git] / update.php
index 1e246dfeef78e1b78a7c983d664eb8242d96bfdf..7b5f6778be7df92807978de0e88126016fa10e9f 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -1078,9 +1078,11 @@ function update_1446()
 
        // In case the distributed cache driver is the default value, but the current cache driver isn't default,
        // we assume that the distributed cache driver should be the same as the current cache driver
-       if ($distributed_cache_driver_source === \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC &&
-               $cache_driver_source > \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC) {
-                DI::config()->set('system', 'distributed_cache_driver', DI::config()->get('system', 'cache_driver'));
+       if (
+               $distributed_cache_driver_source === \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC
+               && $cache_driver_source > \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC
+       ) {
+               DI::config()->set('system', 'distributed_cache_driver', DI::config()->get('system', 'cache_driver'));
        }
 
        return Update::SUCCESS;