]> git.mxchange.org Git - friendica.git/commitdiff
Changed:
authorRoland Häder <roland@mxchange.org>
Mon, 20 Jun 2022 01:48:12 +0000 (03:48 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 20 Jun 2022 01:48:34 +0000 (03:48 +0200)
- cannot have type-hints :-(

src/Database/DBA.php
view/theme/frio/style.php

index d0a0bbe2f4980ed11a7afa154e24cfcb52911ebb..4eff592f091ef538c5b847b6ea5a303a8cfc0c6f 100644 (file)
@@ -223,7 +223,7 @@ class DBA
         * @return boolean Are there rows for that condition?
         * @throws \Exception
         */
-       public static function exists(string $table, array $condition): bool
+       public static function exists($table, array $condition): bool
        {
                return DI::dba()->exists($table, $condition);
        }
index b39cef10294d96c910d51685b1ac9204794e5d90..6d7e7b73f6c6ce8733f7caf8c7043a0a2f11a2cf 100644 (file)
@@ -79,7 +79,7 @@ if (!empty($_REQUEST['scheme'])) {
        $scheme = $_REQUEST['scheme'];
 }
 
-$scheme = Strings::sanitizeFilePathItem($scheme);
+$scheme = Strings::sanitizeFilePathItem($scheme ?? '');
 
 if (($scheme) && ($scheme != '---')) {
        if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {