diff options
Diffstat (limited to 'history.c')
-rw-r--r-- | history.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ historyBuffer(Hist * hist) Strcat_charp(src, "<ol>\n"); if (hist && hist->list) { for (item = hist->list->last; item; item = item->prev) { - q = htmlquote_str((char *)item->ptr); + q = html_quote((char *)item->ptr); Strcat_charp(src, "<li><a href=\""); Strcat_charp(src, q); Strcat_charp(src, "\">"); @@ -44,7 +44,7 @@ loadHistory(Hist * hist) Strremovetrailingspaces(line); if (line->length == 0) continue; - pushHist(hist, line->ptr); + pushHist(hist, url_quote(line->ptr)); } fclose(f); } |