]> 91.132.146.200 Git - scientia.git/commitdiff
small fix
authorBanana <mail@bananas-playground.net>
Sat, 12 Nov 2022 13:02:01 +0000 (14:02 +0100)
committerBanana <mail@bananas-playground.net>
Sat, 12 Nov 2022 13:02:01 +0000 (14:02 +0100)
webroot/config/config.php.default
webroot/lib/summoner.class.php

index e02e4cd3d900a0235891b15cfa6c5d231628105d..7098d44eecd95c4bbdef69e21c83ed64494e1967 100644 (file)
@@ -44,7 +44,6 @@ const FRONTEND_PASSWORD = 'pass';
 # Think of it as a key. Change it often to avoid any abuse.
 # The description will be used in the log files
 const UPLOAD_SECRET = array(
-        'PLEASE CHANGE YOUR SECRET' => 'Your description for this secret #1',
-        'PLEASE CHANGE YOUR SECRET' => 'Your description for this secret #2'
-    )
+    'PLEASE CHANGE YOUR SECRET' => 'Your description for this secret #1',
+    'PLEASE CHANGE YOUR SECRET' => 'Your description for this secret #2'
 );
index cf79fdd40bd0bdcc1bed55d0b2bb26e2c0661e52..34bd8a0fa267e75d7a00bdf9859bdb31e3450b43 100644 (file)
@@ -27,7 +27,7 @@ class Summoner {
         *
         * @param string $input The string to check
         * @param string $mode How the string should be checked
-        * @param mixed $limit If int given the string is checked for length
+        * @param string $limit If int given the string is checked for length
         *
         * @return bool
         *
@@ -38,7 +38,7 @@ class Summoner {
         * the replace should be empty, otherwise are there chars which are not
         * allowed
         */
-    static function validate(string $input, string $mode='text', mixed $limit=false): bool {
+    static function validate(string $input, string $mode='text', string $limit=''): bool {
         // check if we have input
         $input = trim($input);