Wer nach dem Masterupdate v4.6.0.0 folgenden Fehler im Frontend bekommt:

PHP-Code:
Unexpected error occurred...
Argument 1 passed to DataCache::shorten_key() must be of the type stringnull givencalled in /system/core/caching/DataCache.inc.php on line 178 
kann sich erstmal damit behelfen:

Die /system/core/caching/DataCache.inc.php ab Zeile 425 so anpassen:
PHP-Code:
/**
     * @param $key
     *
     * @return string
     */
    
protected static function shorten_key($key): string
    
{
        if (
strlen($key) > 128) {
            
$hash md5($key);
            
$key  substr($key0128 strlen($hash) - 1);
            
$key  .= '-' $hash;
        }

        return (string) 
$key;
    }