summaryrefslogtreecommitdiff
path: root/lib/Menu.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Menu.cc')
-rw-r--r--lib/Menu.cc6
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;