diff --git a/system/autoload/Lang.php b/system/autoload/Lang.php index f5e08e60..dc9292f6 100644 --- a/system/autoload/Lang.php +++ b/system/autoload/Lang.php @@ -8,4 +8,8 @@ class Lang { public static function T($var) { return Lang($var); } + + public static function htmlspecialchars($var) { + return htmlspecialchars($var); + } }