summaryrefslogtreecommitdiffstatshomepage
path: root/ui-shared.c
diff options
context:
space:
mode:
authorLars Hjemli2008-10-06 16:00:42 +0200
committerLars Hjemli2008-10-06 16:00:42 +0200
commitcb1cc0d82d764051d8376281fcb556153f074c1a (patch)
tree55e2b1bb25f176f4e3128376a216d013daf1fd56 /ui-shared.c
parentae83752b418328a369d4a6658fc673458012e1f1 (diff)
downloadcgit-cb1cc0d82d764051d8376281fcb556153f074c1a.tar
cgit-cb1cc0d82d764051d8376281fcb556153f074c1a.tar.gz
cgit-cb1cc0d82d764051d8376281fcb556153f074c1a.zip
ui-shared: specify correct css class for summary tab
When introducing cgit_summary_link() in 49ecbbdd I forgot to specify the css class. This fixes it. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 9b120ae..224e5f3 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -629,7 +629,8 @@ void cgit_print_pageheader(struct cgit_context *ctx)
html("<table class='tabs'><tr><td>\n");
if (ctx->repo) {
- cgit_summary_link("summary", NULL, NULL, ctx->qry.head);
+ cgit_summary_link("summary", NULL, hc(cmd, "summary"),
+ ctx->qry.head);
cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head,
ctx->qry.sha1, NULL);
cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head,
3 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228