mirror of
https://github.com/ZeroDream-CN/PHPMC7
synced 2026-05-18 11:39:51 +08:00
增加多语言支持,修复 utf8mb4 乱码问题
更新版本到 7.3.3325
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
// PHPMC 7 Version define
|
||||
// Don't change this, because it will interfere your update.
|
||||
define("PHPMC_VERSION", "7.3.3233");
|
||||
define("PHPMC_VERSION", "7.3.3325");
|
||||
|
||||
include(ROOT . "/include/core/PHPMC/Event.php");
|
||||
include(ROOT . "/include/core/PHPMC/User.php");
|
||||
@@ -17,7 +17,8 @@ include(ROOT . "/include/core/PHPMC/Permission.php");
|
||||
include(ROOT . "/include/core/PHPMC/Update.php");
|
||||
include(ROOT . "/include/core/PHPMC/Csrf.php");
|
||||
include(ROOT . "/include/core/PHPMC/Plugin.php");
|
||||
|
||||
include(ROOT . "/include/core/PHPMC/Lang.php");
|
||||
|
||||
class PHPMC {
|
||||
|
||||
public static function Event() {
|
||||
@@ -64,6 +65,10 @@ class PHPMC {
|
||||
return new Plugin();
|
||||
}
|
||||
|
||||
public static function Lang() {
|
||||
return new Lang();
|
||||
}
|
||||
|
||||
public static function Error() {
|
||||
return new WebError();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user