Browse Source

Replaced echo with exit

Tobias Reich 8 years ago
parent
commit
64a7972cb5
2 changed files with 2 additions and 4 deletions
  1. 1 2
      plugins/Diagnostics/index.php
  2. 1 2
      plugins/Log/index.php

+ 1 - 2
plugins/Diagnostics/index.php

@@ -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.');
 
 }
 

+ 1 - 2
plugins/Log/index.php

@@ -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.');
 
 }