move feeds cache directory to cache/feeds
This commit is contained in:
parent
7c0eb1b621
commit
342e8a9eeb
2 changed files with 3 additions and 3 deletions
0
cache/feeds/.empty
vendored
Normal file
0
cache/feeds/.empty
vendored
Normal file
|
@ -369,7 +369,7 @@ class RSSUtils {
|
||||||
|
|
||||||
$date_feed_processed = date('Y-m-d H:i');
|
$date_feed_processed = date('Y-m-d H:i');
|
||||||
|
|
||||||
$cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".xml";
|
$cache_filename = CACHE_DIR . "/feeds/" . sha1($fetch_url) . ".xml";
|
||||||
|
|
||||||
$pluginhost = new PluginHost();
|
$pluginhost = new PluginHost();
|
||||||
$pluginhost->set_debug($debug_enabled);
|
$pluginhost->set_debug($debug_enabled);
|
||||||
|
@ -454,7 +454,7 @@ class RSSUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
// cache vanilla feed data for re-use
|
// cache vanilla feed data for re-use
|
||||||
if ($feed_data && !$auth_pass && !$auth_login && is_writable(CACHE_DIR . "/simplepie")) {
|
if ($feed_data && !$auth_pass && !$auth_login && is_writable(CACHE_DIR . "/feeds")) {
|
||||||
$new_rss_hash = sha1($feed_data);
|
$new_rss_hash = sha1($feed_data);
|
||||||
|
|
||||||
if ($new_rss_hash != $rss_hash) {
|
if ($new_rss_hash != $rss_hash) {
|
||||||
|
@ -1288,7 +1288,7 @@ class RSSUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
static function expire_cached_files($debug) {
|
static function expire_cached_files($debug) {
|
||||||
foreach (array("simplepie", "images", "export", "upload") as $dir) {
|
foreach (array("simplepie", "feeds", "images", "export", "upload") as $dir) {
|
||||||
$cache_dir = CACHE_DIR . "/$dir";
|
$cache_dir = CACHE_DIR . "/$dir";
|
||||||
|
|
||||||
// if ($debug) _debug("Expiring $cache_dir");
|
// if ($debug) _debug("Expiring $cache_dir");
|
||||||
|
|
Loading…
Reference in a new issue