diff options
author | friendica <info@friendica.com> | 2015-01-26 19:13:06 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-26 19:13:06 -0800 |
commit | 0596097f8603d24823ea57a68eaf405c6c0d94ff (patch) | |
tree | e2df28813c69fe500570a293fb554cf7b67c52aa /include/poller.php | |
parent | 9f5bfca28dde23893156ad36682e20ca2fc0dd45 (diff) | |
download | volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.tar.gz volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.tar.bz2 volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.zip |
provide storage for directory based reputation in the xlink table by setting xlink_static = 1, so that xlink_static = 0 is traditional poco linkages
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/poller.php b/include/poller.php index d78355db1..dc310fe16 100644 --- a/include/poller.php +++ b/include/poller.php @@ -160,7 +160,7 @@ function poller_run($argv, $argc){ // get rid of really old poco records - q("delete from xlink where xlink_updated < %s - INTERVAL %s", + q("delete from xlink where xlink_updated < %s - INTERVAL %s and xlink_static = 0 ", db_utcnow(), db_quoteinterval('14 DAY') ); |