Replaced echo with exit

This commit is contained in:
Tobias Reich 2016-02-07 00:12:28 +01:00
parent 87350448e0
commit 64a7972cb5
2 changed files with 2 additions and 4 deletions

View File

@ -133,8 +133,7 @@ if ((isset($_SESSION['login'])&&$_SESSION['login']===true)&&
} else {
// Don't go further if the user is not logged in
echo('You have to be logged in to see more information.');
exit();
exit('You have to be logged in to see more information.');
}

View File

@ -57,8 +57,7 @@ if ((isset($_SESSION['login'])&&$_SESSION['login']===true)&&
} else {
// Don't go further if the user is not logged in
echo('You have to be logged in to see the log.');
exit();
exit('You have to be logged in to see the log.');
}