mirror of
https://github.com/myvesta/vesta
synced 2025-08-19 21:04:07 -07:00
Fix for undefined variable in secure_login
This commit is contained in:
parent
b45c554d77
commit
1d7119d6d9
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
if ($_SERVER['REQUEST_URI']=="/") {
|
if (isset($_SERVER['REQUEST_URI']) && $_SERVER['REQUEST_URI']=="/") {
|
||||||
header("Location: /webmail/");
|
header("Location: /webmail/");
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue