diff options
| -rw-r--r-- | ui-shared.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c index a2f636c..2eddd2d 100644 --- a/ui-shared.c +++ b/ui-shared.c  | |||
| @@ -206,17 +206,17 @@ static char *repolink(char *title, char *class, char *page, char *head, | |||
| 206 | } | 206 | } | 
| 207 | html(" href='"); | 207 | html(" href='"); | 
| 208 | if (ctx.cfg.virtual_root) { | 208 | if (ctx.cfg.virtual_root) { | 
| 209 | html_attr(ctx.cfg.virtual_root); | 209 | html_url_path(ctx.cfg.virtual_root); | 
| 210 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 210 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 
| 211 | html("/"); | 211 | html("/"); | 
| 212 | html_attr(ctx.repo->url); | 212 | html_url_path(ctx.repo->url); | 
| 213 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 213 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 
| 214 | html("/"); | 214 | html("/"); | 
| 215 | if (page) { | 215 | if (page) { | 
| 216 | html(page); | 216 | html_url_path(page); | 
| 217 | html("/"); | 217 | html("/"); | 
| 218 | if (path) | 218 | if (path) | 
| 219 | html_attr(path); | 219 | html_url_path(path); | 
| 220 | } | 220 | } | 
| 221 | } else { | 221 | } else { | 
| 222 | html(ctx.cfg.script_name); | 222 | html(ctx.cfg.script_name); | 
