mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 19:15:56 +00:00
fix wrong title being displayed when trying to unsubscribe from feed editor
This commit is contained in:
@@ -227,10 +227,10 @@
|
|||||||
$is_selected = "";
|
$is_selected = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
$title = truncate_string(htmlspecialchars($tmp_line["title"]), 40);
|
$linked_title = truncate_string(htmlspecialchars($tmp_line["title"]), 40);
|
||||||
|
|
||||||
printf("<option $is_selected value='%d'>%s</option>",
|
printf("<option $is_selected value='%d'>%s</option>",
|
||||||
$tmp_line["id"], $title);
|
$tmp_line["id"], $linked_title);
|
||||||
}
|
}
|
||||||
|
|
||||||
print "</select>";
|
print "</select>";
|
||||||
|
|||||||
Reference in New Issue
Block a user