summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-11-20 10:00:24 +0100
committerdefault <nobody@localhost>2022-11-20 10:00:24 +0100
commitd253429fe7d6596533166499d110b6eea4a0af89 (patch)
tree6285c65ca25ee23a7e17ea122caca26c75c6d256 /html.c
parentecff88922f62634bbe6e466f30153ca119ec5061 (diff)
Deleted the link at the end of each RSS entry.
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/html.c b/html.c
index 2892823..dc35062 100644
--- a/html.c
+++ b/html.c
@@ -1132,10 +1132,6 @@ int html_get_handler(d_char *req, char *q_path, char **body, int *b_size, char *
xs *title = xs_str_new(NULL);
int i;
- /* add the post link */
- xs *l = xs_fmt("<p><a href=\"%s\">%s</a><p>", id, id);
- content = xs_str_cat(content, l);
-
/* escape tags */
content = xs_replace_i(content, "<", "&lt;");
content = xs_replace_i(content, ">", "&gt;");