1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

disable content caching if _FEEDS_CONTENT_CACHE is not enabled

This commit is contained in:
Andrew Dolgov 2013-01-22 16:12:50 +04:00
parent 5cb1730648
commit c5e3995f8c

View File

@ -562,7 +562,7 @@
_debug("update_rss_feed: base guid [$entry_guid] not found");
}
if ($cache_content) {
if (defined('_FEEDS_CONTENT_CACHE') && _FEEDS_CONTENT_CACHE && $cache_content) {
if ($debug_enabled) {
_debug("update_rss_feed: caching content (initial)...");
}
@ -796,7 +796,7 @@
$cached_content_needs_update = true;
}
if ($cache_content) {
if (defined('_FEEDS_CONTENT_CACHE') && _FEEDS_CONTENT_CACHE && $cache_content) {
if ($debug_enabled) {
_debug("update_rss_feed: caching content because original checksum changed...");
}