diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2008-02-16 13:56:09 +0100 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2008-02-16 13:56:09 +0100 | 
| commit | d1f3bbe9d22029f45a77bb938c176ccc0c827d46 (patch) | |
| tree | 3f1741c012763cbc5485f31377abdd9241fbac6b /ui-commit.c | |
| parent | Add all config variables into struct cgit_context (diff) | |
| download | cgit-d1f3bbe9d22029f45a77bb938c176ccc0c827d46.tar.gz cgit-d1f3bbe9d22029f45a77bb938c176ccc0c827d46.tar.bz2 cgit-d1f3bbe9d22029f45a77bb938c176ccc0c827d46.zip | |
Move cgit_repo into cgit_context
This removes the global variable which is used to keep track of the
currently selected repository, and adds a new variable in the cgit_context
structure.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
| -rw-r--r-- | ui-commit.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ui-commit.c b/ui-commit.c index 3b0919b..25721ca 100644 --- a/ui-commit.c +++ b/ui-commit.c @@ -194,10 +194,10 @@ void cgit_print_commit(char *hex)  			       sha1_to_hex(p->item->object.sha1), NULL);  		html(")</td></tr>");  	} -	if (cgit_repo->snapshots) { +	if (ctx.repo->snapshots) {  		html("<tr><th>download</th><td colspan='2' class='sha1'>");  		cgit_print_snapshot_links(ctx.qry.repo, ctx.qry.head, -					  hex, cgit_repo->snapshots); +					  hex, ctx.repo->snapshots);  		html("</td></tr>");  	}  	html("</table>\n"); | 
