diff options
author | Lars Hjemli | 2007-11-16 10:28:29 +0100 |
---|---|---|
committer | Lars Hjemli | 2007-11-16 10:28:29 +0100 |
commit | e8e6721817c983770fc0fdfbb26a17900e3c34ce (patch) | |
tree | 86dbc8acd0171bf5ab68fb71872f78465042f680 | |
parent | Use tables for page layout (diff) | |
download | cgit-e8e6721817c983770fc0fdfbb26a17900e3c34ce.tar.gz cgit-e8e6721817c983770fc0fdfbb26a17900e3c34ce.zip |
Add cell-spacing in html
There are some browsers which don't support the border-spacing property Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 4c0613a..be2c75d 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -459,7 +459,7 @@ void cgit_print_pageheader(char *title, int show_search) | |||
459 | 459 | ||
460 | html("<table id='layout' summary=''>\n"); | 460 | html("<table id='layout' summary=''>\n"); |
461 | html("<tr><td id='sidebar'>\n"); | 461 | html("<tr><td id='sidebar'>\n"); |
462 | html("<table class='sidebar' summary=''>\n"); | 462 | html("<table class='sidebar' cellspacing='0' summary=''>\n"); |
463 | html("<tr><td class='sidebar'>\n<a href='"); | 463 | html("<tr><td class='sidebar'>\n<a href='"); |
464 | html_attr(cgit_rooturl()); | 464 | html_attr(cgit_rooturl()); |
465 | htmlf("'><img src='%s' alt='cgit'/></a>\n", | 465 | htmlf("'><img src='%s' alt='cgit'/></a>\n", |