]> git.mxchange.org Git - friendica.git/commitdiff
empty is better than isset
authorPhilipp Holzer <admin@philipp.info>
Sun, 24 Feb 2019 14:48:30 +0000 (15:48 +0100)
committerPhilipp Holzer <admin@philipp.info>
Sun, 24 Feb 2019 14:48:30 +0000 (15:48 +0100)
view/theme/frio/php/scheme.php

index fa7d4a3fe50de2fef139b346247851e365e6ae36..9e3f610cd558d92f353c4e95a814c530add16700 100644 (file)
@@ -24,7 +24,7 @@ function get_scheme_info($scheme)
 {
        $theme = \get_app()->getCurrentTheme();
        $themepath = 'view/theme/' . $theme . '/';
-       if (!isset($scheme)) {
+       if (empty($scheme)) {
                $scheme = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'scheme'));
        }