Files
emlog_autopub/autopub_ajax.php
岳松 0153b4b632 bomp to 2.1.0
fix bug
2013-08-25 18:31:23 +08:00

14 lines
325 B
PHP

<?php
/**
* 自动发布插件
* @copyright (c) xiaosong.org All Rights Reserved
*/
@set_time_limit(0);
require_once('../../../init.php');
$isAjax = (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strstr($_SERVER['HTTP_X_REQUESTED_WITH'], 'XMLHttpRequest')) ? 1 : 0;
if ($isAjax) {
doPub();
exit();
}
emDirect(BLOG_URL);