image attachment display: make possible duplicate detection actually do something

This commit is contained in:
Andrew Dolgov 2008-11-20 08:27:45 +01:00
parent ff39ff9ba1
commit c54526fe2d
1 changed files with 7 additions and 10 deletions

View File

@ -4754,13 +4754,14 @@
#print "<div id=\"allEntryTags\">".__('Tags:')." $f_tags_str</div>"; #print "<div id=\"allEntryTags\">".__('Tags:')." $f_tags_str</div>";
$line["content"] = sanitize_rss($link, $line["content"]); $article_content = sanitize_rss($link, $line["content"]);
if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) { if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
$line["content"] = preg_replace("/href=/i", "target=\"_blank\" href=", $line["content"]); $article_content = preg_replace("/href=/i", "target=\"_blank\" href=",
$article_content);
} }
print $line["content"]; print $article_content;
$result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE $result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
post_id = '$id' AND content_url != ''"); post_id = '$id' AND content_url != ''");
@ -4802,14 +4803,9 @@
array_push($entries, $entry); array_push($entries, $entry);
} }
if (!preg_match("/img/i", $line["content"]) &&
preg_match("/image/", $entries[0]["type"])) {
}
print "<div class=\"postEnclosures\">"; print "<div class=\"postEnclosures\">";
if (!preg_match("/img/i", $line["content"])) { if (!preg_match("/img/i", $article_content)) {
foreach ($entries as $entry) { foreach ($entries as $entry) {
if (preg_match("/image/", $entry["type"])) { if (preg_match("/image/", $entry["type"])) {
print "<p><img print "<p><img
@ -5293,6 +5289,7 @@
// print "<div class=\"cdmInnerContent\" id=\"CICD-$id\" $cdm_cstyle>"; // print "<div class=\"cdmInnerContent\" id=\"CICD-$id\" $cdm_cstyle>";
print sanitize_rss($link, $line["content_preview"]); print sanitize_rss($link, $line["content_preview"]);
$article_content = $line["content_preview"];
$e_result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE $e_result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
post_id = '$id' AND content_url != ''"); post_id = '$id' AND content_url != ''");
@ -5333,7 +5330,7 @@
array_push($entries, $entry); array_push($entries, $entry);
} }
if (!preg_match("/img/i", $line["content"])) { if (!preg_match("/img/i", $article_content)) {
foreach ($entries as $entry) { foreach ($entries as $entry) {
if (preg_match("/image/", $entry["type"])) { if (preg_match("/image/", $entry["type"])) {
print "<p><img print "<p><img