feed editor: truncate linked-to feed title
This commit is contained in:
parent
78935092b5
commit
a6c78e0a65
1 changed files with 4 additions and 1 deletions
|
@ -224,8 +224,11 @@
|
|||
} else {
|
||||
$is_selected = "";
|
||||
}
|
||||
|
||||
$title = truncate_string(htmlspecialchars($tmp_line["title"]), 40);
|
||||
|
||||
printf("<option $is_selected value='%d'>%s</option>",
|
||||
$tmp_line["id"], $tmp_line["title"]);
|
||||
$tmp_line["id"], $title);
|
||||
}
|
||||
|
||||
print "</select>";
|
||||
|
|
Loading…
Reference in a new issue