Skip to content

Commit a96ec41

Browse files
fix: check if USE_AUTH is "yes" because boolean values do not work in k8s
1 parent 61c320c commit a96ec41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
include './config.php';
2020

21-
if ($config['USE_BASIC_AUTH']) {
21+
if ($config['USE_BASIC_AUTH'] === "yes") {
2222
include './auth.php';
2323
}
2424

0 commit comments

Comments
 (0)