mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
ui: Remember to print ampersand as proper html entities.
This commit is contained in:
parent
fdfb6a6d80
commit
c366bd6fa8
@ -104,7 +104,7 @@ void print_sort_header(const char *title, const char *sort)
|
||||
{
|
||||
htmlf("<th class='left'><a href='%s?s=%s", cgit_rooturl(), sort);
|
||||
if (ctx.qry.search) {
|
||||
html("&q=");
|
||||
html("&q=");
|
||||
html_url_arg(ctx.qry.search);
|
||||
}
|
||||
htmlf("'>%s</a></th>", title);
|
||||
|
14
ui-shared.c
14
ui-shared.c
@ -83,7 +83,7 @@ char *cgit_fileurl(const char *reponame, const char *pagename,
|
||||
} else {
|
||||
tmp = fmt("?url=%s/%s/%s", reponame, pagename,
|
||||
(filename ? filename : ""));
|
||||
delim = "&";
|
||||
delim = "&";
|
||||
}
|
||||
if (query)
|
||||
tmp = fmt("%s%s%s", tmp, delim, query);
|
||||
@ -146,19 +146,19 @@ static void site_url(const char *page, const char *search, const char *sort, int
|
||||
|
||||
if (page) {
|
||||
htmlf("?p=%s", page);
|
||||
delim = "&";
|
||||
delim = "&";
|
||||
}
|
||||
if (search) {
|
||||
html(delim);
|
||||
html("q=");
|
||||
html_attr(search);
|
||||
delim = "&";
|
||||
delim = "&";
|
||||
}
|
||||
if (sort) {
|
||||
html(delim);
|
||||
html("s=");
|
||||
html_attr(sort);
|
||||
delim = "&";
|
||||
delim = "&";
|
||||
}
|
||||
if (ofs) {
|
||||
html(delim);
|
||||
@ -298,13 +298,13 @@ void cgit_log_link(const char *name, const char *title, const char *class,
|
||||
html(delim);
|
||||
html("id=");
|
||||
html_url_arg(rev);
|
||||
delim = "&";
|
||||
delim = "&";
|
||||
}
|
||||
if (grep && pattern) {
|
||||
html(delim);
|
||||
html("qt=");
|
||||
html_url_arg(grep);
|
||||
delim = "&";
|
||||
delim = "&";
|
||||
html(delim);
|
||||
html("q=");
|
||||
html_url_arg(pattern);
|
||||
@ -313,7 +313,7 @@ void cgit_log_link(const char *name, const char *title, const char *class,
|
||||
html(delim);
|
||||
html("ofs=");
|
||||
htmlf("%d", ofs);
|
||||
delim = "&";
|
||||
delim = "&";
|
||||
}
|
||||
if (showmsg) {
|
||||
html(delim);
|
||||
|
Loading…
Reference in New Issue
Block a user