aboutsummaryrefslogtreecommitdiffstats
path: root/include/poller.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-15 16:39:21 -0700
committerfriendica <info@friendica.com>2012-03-15 16:39:21 -0700
commit41d595d5bc74987d95ffc6f81194ccc20050e5a4 (patch)
tree5113a75197923b8b0ff994db0f9feef9ce221aea /include/poller.php
parent7684f63ecdfce560f24475630144f6058df15ca9 (diff)
parent5d2c590fa93764c19043981e8398d97c6bae902b (diff)
downloadvolse-hubzilla-41d595d5bc74987d95ffc6f81194ccc20050e5a4.tar.gz
volse-hubzilla-41d595d5bc74987d95ffc6f81194ccc20050e5a4.tar.bz2
volse-hubzilla-41d595d5bc74987d95ffc6f81194ccc20050e5a4.zip
Merge branch 'pull'
Diffstat (limited to 'include/poller.php')
-rwxr-xr-xinclude/poller.php21
1 files changed, 18 insertions, 3 deletions
diff --git a/include/poller.php b/include/poller.php
index cfbc46b87..3bc98e36f 100755
--- a/include/poller.php
+++ b/include/poller.php
@@ -1,7 +1,6 @@
<?php
require_once("boot.php");
-require_once("include/quoteconvert.php");
function poller_run($argv, $argc){
@@ -70,6 +69,19 @@ function poller_run($argv, $argc){
// clear old cache
Cache::clear();
+ // clear item cache files if they are older than one day
+ $cache = get_config('system','itemcache');
+ if (($cache != '') and is_dir($cache)) {
+ if ($dh = opendir($cache)) {
+ while (($file = readdir($dh)) !== false) {
+ $fullpath = $cache."/".$file;
+ if ((filetype($fullpath) == "file") and filectime($fullpath) < (time() - 86400))
+ unlink($fullpath);
+ }
+ closedir($dh);
+ }
+ }
+
$manual_id = 0;
$generation = 0;
$hub_update = false;
@@ -141,7 +153,10 @@ function poller_run($argv, $argc){
if($manual_id)
$contact['last-update'] = '0000-00-00 00:00:00';
- if($contact['network'] === NETWORK_DFRN || $contact['network'] === NETWORK_OSTATUS)
+ if($contact['network'] === NETWORK_DFRN)
+ $contact['priority'] = 2;
+
+ if(!get_config('system','ostatus_use_priority') and ($contact['network'] === NETWORK_OSTATUS))
$contact['priority'] = 2;
if($contact['priority'] || $contact['subhub']) {
@@ -494,7 +509,7 @@ function poller_run($argv, $argc){
logger("Mail: can't fetch msg ".$msg_uid);
continue;
}
- $datarray['body'] = escape_tags(convertquote($r['body'], false));
+ $datarray['body'] = escape_tags($r['body']);
logger("Mail: Importing ".$msg_uid);