summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-02-20 06:52:07 +0100
committerAndrew Dolgov <[email protected]>2008-02-20 06:52:07 +0100
commit4752b0412abb64c6ec32b1ffd18a9b8694598009 (patch)
tree12a041fca67e64043c86d973c380d5799b46a4ce /functions.php
parent4af7a36aa7ccb72aa6f78fdb799d8b8eef0b358b (diff)
do not display empty attachments
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/functions.php b/functions.php
index 591819adf..3e6c0bcb1 100644
--- a/functions.php
+++ b/functions.php
@@ -4619,7 +4619,7 @@
print $line["content"];
$result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
- post_id = '$id'");
+ post_id = '$id' AND content_url != ''");
if (db_num_rows($result) > 0) {
print "<div class=\"postEnclosures\">";
@@ -4635,11 +4635,14 @@
while ($line = db_fetch_assoc($result)) {
$url = $line["content_url"];
+ $ctype = $line["content_type"];
+
+ if (!$ctype) $ctype = __("unknown type");
$filename = substr($url, strrpos($url, "/")+1);
$entry = "<a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
- $filename . " (" . $line["content_type"] . ")" . "</a>";
+ $filename . " (" . $ctype . ")" . "</a>";
array_push($entries, $entry);
}
@@ -4986,7 +4989,7 @@
print $line["content_preview"];
$e_result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
- post_id = '$id'");
+ post_id = '$id' AND content_url != ''");
if (db_num_rows($e_result) > 0) {
print "<div class=\"cdmEnclosures\">";
@@ -5002,11 +5005,13 @@
while ($e_line = db_fetch_assoc($e_result)) {
$url = $e_line["content_url"];
+ $ctype = $e_line["content_type"];
+ if (!$ctype) $ctype = __("unknown type");
$filename = substr($url, strrpos($url, "/")+1);
$entry = "<a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
- $filename . " (" . $e_line["content_type"] . ")" . "</a>";
+ $filename . " (" . $ctype . ")" . "</a>";
array_push($entries, $entry);
}