這是留言發表的程式片段
$begintime=getmicrotime();
$blogplugin=$section_header=$section_footer=$section_sidebar=$section_prebody=array();
require_once ("global.php");
include_once ("data/allmods.php");
include_once ("data/modules.php");
include_once ("data/weather.php");
include_once ("data/cache_emot.php");
include_once ("data/cache_emsel.php");
include_once("data/cache_adminlist.php");
include_once("data/plugin_enabled.php");
acceptrequest('act,go,page,part');
if (!isset($page) || !is_numeric($page) || $page<=0) $page=1; else $page=floor($page); $part=floor($part); if (empty($part)) $part=1; $pageitems=''; if ($config['blogopen']!=1 && !defined('isLogin')) { if ($permission['CP']==1) $config['message_off'].="
- <"a" href="http://www.blogger.com/%27admin.php%27">{ $lnc[107] }
catcherror($config['message_off']);
}
if ($go) @list($job, $itemid)=@explode('_', basename($go));
if (!$act) $act='main';
else $act=basename($act);
$itemid=safe_convert($itemid);
//Load Template info
for ($i=0; $i
}
$mbcon['images']=$template['images'];
//Alert the admin to log in again before he can perform any moderating actions
if ($permission['CP']=='1') {
if ($config['noadminsession']=='1') define("ADMIN_LOGIN", 1);
else {
if ($db_defaultsessdir!=1) session_save_path("./{$db_tmpdir}");
session_cache_limiter("private, must-revalidate");
session_start();
if ($_SESSION['admin_userid']!==$userdetail['userid'] || $_SESSION['admin_psw']!==$userdetail['userpsw']) {
if ($act!='login')
$headerhtml_notifyadmin="
{$lnc[279]}
";define("ADMIN_LOGIN", 0);
} else define("ADMIN_LOGIN", 1);
}
} elseif ($permission['ReplyReply']=='1') define("ADMIN_LOGIN", 1);
else define("ADMIN_LOGIN", 0);
//Start Template Analyzing
$t=new template;
//Start Loading Modules
if (file_exists("inc/mod_{$act}.php")) include ("inc/mod_{$act}.php");
else {
$valid_plugins=@explode(',', $blogplugin['page']);
if (@in_array($act, $valid_plugins) && is_file("plugin/{$act}/page.php")) { //Load whole page plugin
include ("plugin/{$act}/page.php");
if ($plugin_closesidebar==1) $elements['mainpage']=str_replace("class=\"content\"", "class=\"content-wide\"", $elements['mainpage']);
$bodymenu=$t->set('mainpage', array('pagebar'=>'', 'iftoppage'=>'none', 'ifbottompage'=>'none', 'ifannouncement'=>'none', 'topannounce'=>'', 'mainpart'=>$plugin_return, 'previouspageexists'=>'', 'nextpageexists'=>''));
}
else include ("inc/mod_main.php");
}
//Section: ..
$ajax_js="\n";
$ajax_js.="\n";
$ajax_js.="\n";
$ajax_js.="";
$ajax_js=plugin_walk ('firstheader', $ajax_js);
include_once ("inc/mod_basic.php");
include_once ("data/mods.php");
$extraheader=$mbcon['extraheader']."\n".@implode("\n", $section_prebody);
$headerhtml=$t->set('header', array('blogname'=>$config['blogname'], 'blogdesc'=>$config['blogdesc'], 'csslocation'=>$csslocation, 'pagetitle'=>$pagetitle, 'ajax_js'=>$ajax_js, "extraheader"=>$extraheader, "blogkeywords"=>$config['blogkeywords'], 'baseurl'=>$baseurl, 'language'=>$langname['languagename'], 'codeversion'=>$codeversion));
//Admin notification
$headerhtml.=$headerhtml_notifyadmin;
//Section: Top
$section_head_components="
$headmenu=$t->set('displayheader', array('blogname'=>$config['blogname'], 'blogdesc'=>$config['blogdesc'], 'section_head_components'=>$section_head_components));
//Where am I now?
if (defined('whereAmI')) $currentpagelocation=whereAmI;
else {
$nav=$_SERVER["REQUEST_URI"];
$currentpagelocation=strrchr($nav, '/');
$currentpagelocation=str_replace('.php', '', substr($currentpagelocation, 1));
if ($currentpagelocation=='') $currentpagelocation='index';
}
$headmenu_tmp=str_replace(array("", ""), array("", ""), $headmenu);
$headmenu=($headmenu_tmp==$headmenu) ? str_replace(array("", ""), array("", ""), $headmenu) : $headmenu_tmp;
//Section: Side
if ($plugin_closesidebar!=1) {
if (is_array($section_sidebar)) {
$siderbarcounter=0;
foreach ($section_sidebar as $blocker) {
$blockname="sideblock_{$blocker['name']}";
if (isset($elements[$blockname])) $sideblock=$blockname;
else $sideblock="sideblock";
$ifextend=$blocker['extend'] ? 'block' : 'none';
$decodedcontent=evalmycode($blocker['content']);
$section_side_components[]=$t->set($sideblock, array('title'=>$blocker['title'], 'content'=>$decodedcontent, 'id'=>$blocker['name'], 'ifextend'=>$ifextend));
$tptvalue["block_{$blocker['name']}"]=$decodedcontent;
$siderbarcounter+=1;
unset($decodedcontent);
}
$section_side_components=@implode('', $section_side_components);
}
$sidemenu=$t->set('displayside', array('section_side_components'=>$section_side_components, 'siderbarcounter'=>$siderbarcounter));
} else $sidemenu='';
//Section: Bottom
$section_foot_components=@implode('', $section_footer);
$footmenu=$t->set('displayfooter', array('section_foot_components'=>$section_foot_components));
//Section: ..
$footerhtml=$t->set('footer', array());
$displayall=array('headerhtml'=>$headerhtml, 'headmenu'=>$headmenu, 'footmenu'=>$footmenu, 'bodymenu'=>$bodymenu, 'sidemenu'=>$sidemenu, 'footerhtml'=>$footerhtml);
$tt=$t->set('displayall', $displayall);
$tt=$t->publish($tt); //2006-10-20 Add global setting support
@header("Content-Type: text/html; charset=utf-8");
if ($config['gzip']==1) ob_start("ob_gzhandler");
//Running time
if ($mbcon['runtime']==1) {
$endtime=getmicrotime();
$runtimeamount=$endtime-$begintime;
$runtimeamount=floor($runtimeamount*1000);
$gzipplus=($config['gzip']==1) ? ', Gzip enabled' : '';
$runtimedisplay="";
$tt=str_replace('', $runtimedisplay.'', $tt);
}
echo $tt;
//print_r ($tptvalue);
//print_r ($allqueries); //Debug only
if ($config['gzip']==1) ob_end_flush();
function getmicrotime() { //Time Counting
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}