Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit e8927f9

Browse files
author
mattpass
committed
saveFiles is an array not bool
1 parent 1a6c51b commit e8927f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/settings-save-current-files.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
$t = $text['settings-save-current-files'];
99

1010
// Save the currently opened files for next time
11-
if (true === $_SESSION['loggedIn'] && true === isset($_GET["saveFiles"]) && true === $_GET['saveFiles']) {
11+
if (true === $_SESSION['loggedIn'] && true === isset($_GET["saveFiles"])) {
1212
if (!$demoMode) {
1313
$saveFilesArray = [];
1414
if ("CLEAR" !== $_GET['saveFiles']) {

0 commit comments

Comments
 (0)