fix wrong title being displayed when trying to unsubscribe from feed editor

This commit is contained in:
Andrew Dolgov 2009-10-22 11:55:50 +04:00
parent 44f0638e96
commit c8358b5b0c
1 changed files with 2 additions and 2 deletions

View File

@ -227,10 +227,10 @@
$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>",
$tmp_line["id"], $title);
$tmp_line["id"], $linked_title);
}
print "</select>";