diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2011-04-26 18:42:05 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2011-04-26 18:42:05 +0400 |
| commit | 65eebd13f41a18dab90447276faca4045990aac9 (patch) | |
| tree | 61300d1d6fdecf740aedf7d85dce7d4cab7ee119 /functions.php | |
| parent | 3ff62983526a3d3cf075c59bbfafe65fe9821d58 (diff) | |
add option to disable PUSH client support globally (closes #340
Diffstat (limited to 'functions.php')
| -rw-r--r-- | functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php index aa50433e3..79318dc68 100644 --- a/functions.php +++ b/functions.php @@ -777,7 +777,7 @@ return; // no articles } - if ($pubsub_state != 2) { + if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) { if ($debug_enabled) _debug("update_rss_feed: checking for PUSH hub..."); |