diff options
author | Pixel <Pixel> | 2001-12-16 13:42:22 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-12-16 13:42:22 +0000 |
commit | 82be68107b19c270b0c4546cffaf97571ad231d3 (patch) | |
tree | f4d9c15f2d78259731b4a28309bc1a2267464d0e /lib/Menu.cc | |
parent | b9c5376bb1b0bf8e9bd0589e192220dfe0892bd5 (diff) |
-Debug
Diffstat (limited to 'lib/Menu.cc')
-rw-r--r-- | lib/Menu.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Menu.cc b/lib/Menu.cc index f730e5b..05d7088 100644 --- a/lib/Menu.cc +++ b/lib/Menu.cc @@ -15,9 +15,9 @@ Task * Menu::Do(Variables * v, Variables *, Handle * h) { SendHead(b); (*b) << "<center><TABLE BORDER=0>" << endnl; for (i = 0; i < nba; i++) { - (*b) << "<TR BGCOLOR=\"#" << (f ? "dddddd" : "cccccc") << "\"><TD ALIGN=\"center\">" << (i + 1) << "</TD><TD>" - "<A HREF=\"/bin/" << (la[i] ? la[i]->GetURL() : "start") << "\">" - << lt[i] << "</A></TD></TR>" << endnl; + (*b) << "<TR BGCOLOR=\"#" << (f ? "dddddd" : "cccccc") << "\"><TD ALIGN=\"center\">" << (i + 1) << "</TD><TD>"; + (*b) << "<A HREF=\"/bin/" << (la[i] ? la[i]->GetURL() : "start") << "\">"; + (*b) << lt[i] << "</A></TD></TR>" << endnl; f = f ? 0 : 1; } (*b) << "</TABLE></center>" << endnl; |