Update Kirby to 3.7.4

This commit is contained in:
Lukas Bestle
2022-08-23 21:36:13 +02:00
parent 435b9f4541
commit d89a0a647c
674 changed files with 212 additions and 61 deletions

0
kirby/src/Session/AutoSession.php Executable file → Normal file
View File

3
kirby/src/Session/FileSessionStore.php Executable file → Normal file
View File

@@ -7,6 +7,7 @@ use Kirby\Exception\Exception;
use Kirby\Exception\LogicException;
use Kirby\Exception\NotFoundException;
use Kirby\Filesystem\Dir;
use Kirby\Filesystem\F;
use Kirby\Toolkit\Str;
/**
@@ -322,7 +323,7 @@ class FileSessionStore extends SessionStore
}
// file still exists, delete it
if (@unlink($path) !== true) {
if (@F::unlink($path) !== true) {
// @codeCoverageIgnoreStart
throw new Exception([
'key' => 'session.filestore.unexpectedFilesystemError',

0
kirby/src/Session/Session.php Executable file → Normal file
View File

0
kirby/src/Session/SessionData.php Executable file → Normal file
View File

0
kirby/src/Session/SessionStore.php Executable file → Normal file
View File

0
kirby/src/Session/Sessions.php Executable file → Normal file
View File