This commit is contained in:
redmatrix 2015-11-02 14:46:24 -08:00
commit 966dd03195
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ This document assumes you're an administrator.
[b]system > cron_hour[/b]
Specify an hour in which to run cron_daily. By default with no config, this will run at midnight UTC.
[b]system > minimum_feedcheck_minutes[/b]
The minimum interval between polling RSS feeds. If this is lower than the cron interval, feeds will be polled with each cronjob
The minimum interval between polling RSS feeds. If this is lower than the cron interval, feeds will be polled with each cronjob. Defaults to 60 if not set. The site setting can also be over-ridden on a channel by channel basis by a service class setting aptly named 'minimum_feedcheck_minutes'.
[b]system > blacklisted_sites[/b]
An array of specific hubs to block from this hub completely.
[b]system > ignore_imagick[/b]

View File

@ -655,7 +655,7 @@ function connedit_content(&$a) {
$locstr = '';
$locs = q("select hubloc_addr as location from hubloc left join site on hubloc_url = site_url where hubloc_hash = '%s'
and hubloc_network = 'zot' and hubloc_deleted = 0 and site_dead = 0",
and hubloc_deleted = 0 and site_dead = 0",
dbesc($contact['xchan_hash'])
);