代码拉取完成,页面将自动刷新
同步操作将从 xiuno/xiunobbs 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
!defined('DEBUG') AND exit('Forbidden');
// 可以合并成一个文件,加快速度
// merge to one file.
// hook model_inc_start.php
$include_model_files = array (
APP_PATH.'model/kv.func.php',
APP_PATH.'model/queue.func.php',
APP_PATH.'model/group.func.php',
APP_PATH.'model/user.func.php',
APP_PATH.'model/forum.func.php',
APP_PATH.'model/forum_access.func.php',
APP_PATH.'model/thread.func.php',
APP_PATH.'model/thread_top.func.php',
APP_PATH.'model/post.func.php',
APP_PATH.'model/attach.func.php',
APP_PATH.'model/check.func.php',
APP_PATH.'model/mythread.func.php',
APP_PATH.'model/runtime.func.php',
APP_PATH.'model/table_day.func.php',
APP_PATH.'model/cron.func.php',
APP_PATH.'model/form.func.php',
APP_PATH.'model/misc.func.php',
APP_PATH.'model/session.func.php',
// hook model_inc_file.php
);
// hook model_inc_include_before.php
if(DEBUG) {
foreach ($include_model_files as $model_files) {
include _include($model_files);
}
} else {
$model_min_file = $conf['tmp_path'].'model.min.php';
$isfile = is_file($model_min_file);
if(!$isfile) {
$s = '';
foreach($include_model_files as $model_files) {
// 压缩后不利于调试,有时候碰到未结束的 php 标签,会暴 500 错误
//$s .= php_strip_whitespace(_include($model_files));
$t = file_get_contents(_include($model_files));
$t = trim($t);
$t = ltrim($t, '<?php');
$t = rtrim($t, '?>');
$s .= "<?php\r\n".$t."\r\n?>";
}
$r = file_put_contents($model_min_file, $s);
unset($s);
}
include $model_min_file;
}
// hook model_inc_end.php
/*
function xn_php_strip_whitespace($file) {
$s = php_strip_whitespace($file);
if(substr($s, 0, 5) == '<?php') {
$s = substr($s, 5);
}
if(substr($s, -2) == '?>') {
$s = substr($s, 0, -2);
}
return $s;
}*/
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。