Changeset 280 for trunk/Phergie/Plugin/FeedTicker.php
- Timestamp:
- 08/06/08 10:54:00 (4 months ago)
- Files:
-
- trunk/Phergie/Plugin/FeedTicker.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Phergie/Plugin/FeedTicker.php
r278 r280 94 94 95 95 /** 96 * If true, the new feed items are buffered until something happens on 97 * the channel, indicating some kind of presence / readership is available 98 * 99 * @var bool 100 */ 101 protected $smartBuffer = true; 102 103 /** 96 104 * Processes necessary configuration setting values. 97 105 * … … 116 124 $globalUrl = trim($this->getPluginIni('filter_url')); 117 125 $globalArticle = trim($this->getPluginIni('filter_article')); 126 if ($this->getPluginIni('smart_buffer') !== null) { 127 $this->smartBuffer = (bool) $this->getPluginIni('smart_buffer'); 128 } 118 129 119 130 $i = 0; … … 292 303 $this->cache[$id] = $articles; 293 304 } 305 306 if (!$this->smartBuffer) { 307 $this->checkQueue(); 308 } 294 309 } 295 310