浏览代码

Close tags :)

Miraty 3 年之前
父节点
当前提交
69f16b72ac
共有 1 个文件被更改,包括 2 次插入2 次删除
  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>");
 }