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

implement a proper fix of cached images URL (refs #305, closes #300)

This commit is contained in:
Andrew Dolgov 2011-01-31 13:22:36 +03:00
parent 53fd549523
commit b899847009

View File

@ -653,13 +653,11 @@
if (SIMPLEPIE_CACHE_IMAGES && $cache_images) {
$image_handler = get_self_url_prefix() . '/image.php';
if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
_debug("enabling image cache: $image_handler");
_debug("enabling image cache");
}
$rss->set_image_handler($image_handler, 'i');
$rss->set_image_handler("image.php", 'i');
}
if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
@ -3714,8 +3712,9 @@
rewrite_relative_url($site_url, $entry->getAttribute('href')));
if ($entry->hasAttribute('src'))
$entry->setAttribute('src',
rewrite_relative_url($site_url, $entry->getAttribute('src')));
if (preg_match('/^image.php\?i=[a-z0-9]+$/', $entry->getAttribute('src')) == 0)
$entry->setAttribute('src',
rewrite_relative_url($site_url, $entry->getAttribute('src')));
}
if (strtolower($entry->nodeName) == "a") {