X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fexpire.php;h=873c594e8499ea93aeaa55727abeb09f34e81e28;hb=497fd34026fbaa83b11a64d3a0a6e20f1360e5d6;hp=fe1007efd58b006e5e53ae0ebc1639f59b4ce4ed;hpb=e746c4955bd9b8230d1c5427cfaeb18c6e370a3a;p=friendica.git diff --git a/include/expire.php b/include/expire.php index fe1007efd5..873c594e84 100644 --- a/include/expire.php +++ b/include/expire.php @@ -8,7 +8,7 @@ function expire_run(&$argv, &$argc){ if(is_null($a)) { $a = new App; } - + if(is_null($db)) { @include(".htconfig.php"); require_once("include/dba.php"); @@ -18,16 +18,12 @@ function expire_run(&$argv, &$argc){ require_once('include/session.php'); require_once('include/datetime.php'); - require_once('library/simplepie/simplepie.inc'); require_once('include/items.php'); require_once('include/Contact.php'); load_config('config'); load_config('system'); - if ($hostname = get_config('system', 'hostname')) - $a->set_hostname($hostname); - $a->set_baseurl(get_config('system','url')); @@ -41,7 +37,7 @@ function expire_run(&$argv, &$argc){ q("optimize table item"); logger('expire: start'); - + $r = q("SELECT `uid`,`username`,`expire` FROM `user` WHERE `expire` != 0"); if(count($r)) { foreach($r as $rr) { @@ -50,10 +46,14 @@ function expire_run(&$argv, &$argc){ } } + load_hooks(); + + call_hooks('expire'); + return; } if (array_search(__file__,get_included_files())===0){ - expire_run($argv,$argc); + expire_run($_SERVER["argv"],$_SERVER["argc"]); killme(); }