コード例 #1
0
ファイル: DMsg.php プロジェクト: kopytov/openlitespeed
 public static function Err($tag)
 {
     if ($tag == '') {
         return NULL;
     }
     global $_gmsg;
     if (self::$_curlang == '') {
         DMsg::init();
     }
     if (isset($_gmsg[$tag])) {
         return $_gmsg[$tag] . ' ';
     } else {
         error_log("DMsg:undefined Err tag {$tag}");
         return 'Unknown';
     }
 }