diff options
-rw-r--r-- | include/poller.php | 7 | ||||
-rw-r--r-- | include/socgraph.php | 4 | ||||
-rw-r--r-- | version.inc | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/include/poller.php b/include/poller.php index bd3f81a2e..896553a43 100644 --- a/include/poller.php +++ b/include/poller.php @@ -158,6 +158,13 @@ function poller_run($argv, $argc){ mark_orphan_hubsxchans(); + // get rid of really old poco records + + q("delete from xlink where xlink_updated < %s - INTERVAL %s", + db_utcnow(), db_quoteinterval('14 DAY') + ); + + /** * End Cron Weekly */ diff --git a/include/socgraph.php b/include/socgraph.php index 0cdf43ec7..15ef480f6 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -120,7 +120,7 @@ function poco_load($xchan = '',$url = null) { $name = $entry['displayName']; $hash = $entry['hash']; $rating = ((array_key_exists('rating',$entry)) ? intval($entry['rating']) : 0); - $rating = ((array_key_exists('rating_text',$entry)) ? escape_tags($entry['rating_text']) :''); + $rating_text = ((array_key_exists('rating_text',$entry)) ? escape_tags($entry['rating_text']) :''); if(x($entry,'urls') && is_array($entry['urls'])) { foreach($entry['urls'] as $url) { @@ -215,6 +215,8 @@ function poco_load($xchan = '',$url = null) { dbesc($xchan), db_utcnow(), db_quoteinterval('2 DAY') ); + + } diff --git a/version.inc b/version.inc index c376f4189..986738806 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-01-19.921 +2015-01-20.922 |