Fixed bad <i> display

SVN revision: 2194
This commit is contained in:
Stefan Ritt 2009-04-16 06:32:42 +00:00
parent 18a4a6b1de
commit 79a2dd8c7a

View File

@ -13513,9 +13513,9 @@ void show_elog_delete(LOGBOOK * lbs, int message_id)
NULL, NULL, NULL, NULL, NULL); NULL, NULL, NULL, NULL, NULL);
if (!is_author(lbs, attrib, owner)) { if (!is_author(lbs, attrib, owner)) {
sprintf(str, loc("Only user <i>%s</i> can delete this entry"), owner); strencode2(str2, owner, sizeof(str2));
strencode2(str2, str, sizeof(str2)); sprintf(str, loc("Only user <b>%s</b> can delete this entry"), str2);
show_error(str2); show_error(str);
return; return;
} }
} }