From: Thierry Pasqualier Date: Wed, 24 Oct 2007 17:47:07 +0000 (+0000) Subject: fix the tab.c bug with IE : removed a useless div. The round X-Git-Tag: v7.86~2920 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=1ba24c6e2d1544dabc9e1a0b10e2c745ca0dd9d4 fix the tab.c bug with IE : removed a useless div. The round corners on the bottom on tab content don't still work... --- diff --git a/webcit/tabs.c b/webcit/tabs.c index ef58f27bc..6ef4bfde6 100644 --- a/webcit/tabs.c +++ b/webcit/tabs.c @@ -51,7 +51,6 @@ void tabbed_dialog(int num_tabs, char *tabnames[]) { } wprintf("\n"); - wprintf("
"); } /** @@ -61,7 +60,7 @@ void tabbed_dialog(int num_tabs, char *tabnames[]) { */ void begin_tab(int tabnum, int num_tabs) { wprintf("\n", tabnum, num_tabs); - wprintf("
", + wprintf("
", tabnum, ( (tabnum == 0) ? "block" : "none" ) ); @@ -77,13 +76,12 @@ void end_tab(int tabnum, int num_tabs) { wprintf("\n", tabnum, num_tabs); if (tabnum == num_tabs-1) { - wprintf("
\n"); + wprintf("" ); + } }