Skip to content

Commit 1d7119d

Browse files
authored
Fix for undefined variable in secure_login
1 parent b45c554 commit 1d7119d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/inc/secure_login.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
if ($_SERVER['REQUEST_URI']=="/") {
2+
if (isset($_SERVER['REQUEST_URI']) && $_SERVER['REQUEST_URI']=="/") {
33
header("Location: /webmail/");
44
exit;
55
}

0 commit comments

Comments
 (0)