summaryrefslogtreecommitdiff
path: root/config.php-dist
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-26 18:42:05 +0400
committerAndrew Dolgov <[email protected]>2011-04-26 18:42:05 +0400
commit65eebd13f41a18dab90447276faca4045990aac9 (patch)
tree61300d1d6fdecf740aedf7d85dce7d4cab7ee119 /config.php-dist
parent3ff62983526a3d3cf075c59bbfafe65fe9821d58 (diff)
add option to disable PUSH client support globally (closes #340
Diffstat (limited to 'config.php-dist')
-rw-r--r--config.php-dist10
1 files changed, 7 insertions, 3 deletions
diff --git a/config.php-dist b/config.php-dist
index 301b8856c..6ebcc1a11 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -178,14 +178,18 @@
// http://twitter.com/oauth_clients to register your instance.
define('PUBSUBHUBBUB_HUB', '');
- // URL to a PubSubHubbub-compatible hub server. If defined, Published
- // articles generated feeds would automatically become PUSH-enabled.
+ // URL to a PubSubHubbub-compatible hub server. If defined, "Published
+ // articles" generated feed would automatically become PUSH-enabled.
+
+ define('PUBSUBHUBBUB_ENABLED', true);
+ // Enable client PubSubHubbub support in tt-rss. When disabled, tt-rss
+ // won't try to subscribe to PUSH feed updates.
define('ISCONFIGURED', false);
// Please set this to true if you have read everything above and
// finished setting configuration options.
- define('CONFIG_VERSION', 22);
+ define('CONFIG_VERSION', 23);
// Expected config version. Please update this option in config.php
// if necessary (after migrating all new options from this file).