mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 18:49:21 -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
|
||||
if ($_SERVER['REQUEST_URI']=="/") {
|
||||
if (isset($_SERVER['REQUEST_URI']) && $_SERVER['REQUEST_URI']=="/") {
|
||||
header("Location: /webmail/");
|
||||
exit;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue