perform poco_load
This commit is contained in:
parent
d4644d7339
commit
e28b143fb6
|
@ -24,6 +24,7 @@ function poller_run($argv, $argc){
|
||||||
require_once('include/items.php');
|
require_once('include/items.php');
|
||||||
require_once('include/Contact.php');
|
require_once('include/Contact.php');
|
||||||
require_once('include/email.php');
|
require_once('include/email.php');
|
||||||
|
require_once('include/socgraph.php');
|
||||||
|
|
||||||
load_config('config');
|
load_config('config');
|
||||||
load_config('system');
|
load_config('system');
|
||||||
|
@ -528,6 +529,20 @@ function poller_run($argv, $argc){
|
||||||
intval($contact['id'])
|
intval($contact['id'])
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
// load current friends if possible.
|
||||||
|
|
||||||
|
if($contact['poco']) {
|
||||||
|
$r = q("SELECT count(*) as total from glink
|
||||||
|
where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
|
||||||
|
intval($contact['id'])
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if(count($r)) {
|
||||||
|
if(! $r[0]['total'])
|
||||||
|
poco_load($contact['id'],$importer_uid,$contact['poco']);
|
||||||
|
}
|
||||||
|
|
||||||
// loop - next contact
|
// loop - next contact
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
require_once('include/datetime.php');
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue