diff --git a/backend.php b/backend.php
index a9f79667b..90b18f544 100644
--- a/backend.php
+++ b/backend.php
@@ -896,6 +896,8 @@
$feed_title = "?";
}
+ $feed_title = db_unescape_string($feed_title);
+
if ($feed < -10) error_reporting (0);
print "
";
@@ -2260,7 +2262,8 @@
}
while ($line = db_fetch_assoc($result)) {
- printf("", $line["id"], $line["title"]);
+ printf("", $line["id"],
+ db_unescape_string($line["title"]));
}
print " ";
@@ -2400,7 +2403,7 @@
$is_selected = "";
}
printf("",
- $tmp_line["id"], $tmp_line["title"]);
+ $tmp_line["id"], db_unescape_string($tmp_line["title"]));
}
print "";