Files
emlog_autopub/autopub_ajax.php

14 lines
325 B
PHP
Raw Normal View History

2013-04-02 01:03:02 +08:00
<?php
/**
* 自动发布插件
* @copyright (c) xiaosong.org All Rights Reserved
*/
2013-08-25 18:31:23 +08:00
@set_time_limit(0);
require_once('../../../init.php');
2013-04-02 01:03:02 +08:00
$isAjax = (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strstr($_SERVER['HTTP_X_REQUESTED_WITH'], 'XMLHttpRequest')) ? 1 : 0;
if ($isAjax) {
doPub();
exit();
}
2013-08-25 18:31:23 +08:00
emDirect(BLOG_URL);