mirror of https://github.com/friendica/friendica
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
380 B
25 lines
380 B
<?php
|
|
|
|
use \Friendica\Core\Config;
|
|
|
|
require_once("boot.php");
|
|
require_once("include/tags.php");
|
|
|
|
global $a, $db;
|
|
|
|
if(is_null($a))
|
|
$a = new App;
|
|
|
|
if(is_null($db)) {
|
|
@include(".htconfig.php");
|
|
require_once("include/dba.php");
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
|
}
|
|
|
|
Config::load();
|
|
|
|
update_items();
|
|
killme();
|
|
?>
|