Fix for undefined variable in secure_login

This commit is contained in:
myvesta 2018-10-08 11:22:12 +02:00 committed by GitHub
commit 1d7119d6d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
} }