]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/php/scheme.php
Use minimal mode to change site theme settings
[friendica.git] / view / theme / frio / php / scheme.php
index 538839b2c256f8623b3b66a80c7acaa0816082aa..ddce673105e473320879d57b2ae066746f0753e5 100644 (file)
@@ -19,8 +19,6 @@
  */
 use Friendica\Core\PConfig;
 
-require_once 'boot.php';
-
 function get_scheme_info($scheme)
 {
        $theme = get_app()->getCurrentTheme();
@@ -46,7 +44,11 @@ function get_scheme_info($scheme)
                foreach ($ll as $l) {
                        $l = trim($l, "\t\n\r */");
                        if ($l != '') {
-                               list($k, $v) = array_map('trim', explode(':', $l, 2));
+                               $values = array_map('trim', explode(':', $l, 2));
+                               if (count($values) < 2) {
+                                       continue;
+                               }
+                               list($k, $v) = $values;
                                $k = strtolower($k);
                                if ($k == 'author') {
                                        $r = preg_match('|([^<]+)<([^>]+)>|', $v, $m);