]> git.wh0rd.org - tt-rss.git/commitdiff
Merge pull request #385 from dzaikos/cache-image-size-2
authorAndrew Dolgov <gothfox@users.noreply.github.com>
Fri, 27 Jun 2014 05:11:32 +0000 (09:11 +0400)
committerAndrew Dolgov <gothfox@users.noreply.github.com>
Fri, 27 Jun 2014 05:11:32 +0000 (09:11 +0400)
Cache image size (take 2)

include/rssfuncs.php

index 010071e577dc1da4f8788679be1cf979715d6863..60cb3b2d24a007cbbee15612736f1f54a5dcdf82 100644 (file)
@@ -2,6 +2,7 @@
        define_default('DAEMON_UPDATE_LOGIN_LIMIT', 30);
        define_default('DAEMON_FEED_LIMIT', 500);
        define_default('DAEMON_SLEEP_INTERVAL', 120);
+       define_default('_MIN_CACHE_IMAGE_SIZE', 1024);
 
        function update_feedbrowser_cache() {
 
                                if (!file_exists($local_filename)) {
                                        $file_content = fetch_file_contents($src);
 
-                                       if ($file_content && strlen($file_content) > 1024) {
+                                       if ($file_content && strlen($file_content) > _MIN_CACHE_IMAGE_SIZE) {
                                                file_put_contents($local_filename, $file_content);
                                        }
                                }