error.php
来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 43 行
PHP
43 行
<?
/************************************************************************
UebiMiau is a GPL'ed software developed by
- Aldoir Ventura - aldoir@users.sourceforge.net
- http://uebimiau.sourceforge.net
Fell free to contact, send donations or anything to me :-)
S鉶 Paulo - Brasil
*************************************************************************/
// load configs
require("./inc/config.php");
require("./inc/lib.php");
error_reporting (E_ALL ^ E_NOTICE);
define("SMARTY_DIR","./smarty/");
require_once(SMARTY_DIR."Smarty.class.php");
$smarty = new Smarty;
$smarty->compile_dir = $temporary_directory;
$smarty->security=true;
$smarty->secure_dir=array("./");
$smarty->assign("umLanguageFile",$selected_language.".txt");
$phpver = phpversion();
$phpver = doubleval($phpver[0].".".$phpver[2]);
if($phpver >= 4.1) {
extract($_GET);
}
$smarty->assign("umSid",$sid);
$smarty->assign("umLid",$lid);
$smarty->assign("umTid",$tid);
$smarty->assign("umErrorCode",$err);
$smarty->display("neotech.net/error.htm");
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?