Browse Source

Close tags :)

Miraty 3 years ago
parent
commit
69f16b72ac
1 changed files with 2 additions and 2 deletions
  1. 2 2
      common/init.php

+ 2 - 2
common/init.php

@@ -17,10 +17,10 @@ require "pages.php";
 
 function userError($msg) {
 	http_response_code(422);
-	exit("<strong>User error<strong>: The server refused to process this request: <em>" . $msg . "</em>");
+	exit("<strong>User error</strong>: The server refused to process this request: <em>" . $msg . "</em>");
 }
 
 function serverError($msg) {
 	http_response_code(500);
-	exit("<strong>Server error<strong>: The server encountered an error: <em>" . $msg . "</em>");
+	exit("<strong>Server error</strong>: The server encountered an error: <em>" . $msg . "</em>");
 }