From d253429fe7d6596533166499d110b6eea4a0af89 Mon Sep 17 00:00:00 2001 From: default Date: Sun, 20 Nov 2022 10:00:24 +0100 Subject: [PATCH] Deleted the link at the end of each RSS entry. --- html.c | 4 ---- 1 file changed, 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("

%s

", id, id); - content = xs_str_cat(content, l); - /* escape tags */ content = xs_replace_i(content, "<", "<"); content = xs_replace_i(content, ">", ">");