summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-16 06:35:13 +0100
committerAndrew Dolgov <[email protected]>2008-05-16 06:35:13 +0100
commit0745839a9590a1efb74f4f4d1940bdb67c90cfc8 (patch)
tree88d96984ccd94106a48af81ffc639f870a98961c /functions.php
parentec92c9d1461b860856a14bb7df6668a6eea60ba5 (diff)
localize help dialogs
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/functions.php b/functions.php
index a8cb09fe4..ac949dd49 100644
--- a/functions.php
+++ b/functions.php
@@ -5517,15 +5517,15 @@
}
}
- function rounded_table_start($classname) {
+ function rounded_table_start($classname, $header = "&nbsp;") {
print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
- print "<tr><td class='c1'>&nbsp;</td><td class='top'>&nbsp;</td><td class='c2'>&nbsp;</tr>";
+ print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</tr>";
print "<tr><td class='left'>&nbsp;</td><td class='content'>";
}
- function rounded_table_end() {
+ function rounded_table_end($footer = "&nbsp;") {
print "</td><td class='right'>&nbsp;</td></tr>";
- print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>&nbsp;</td><td class='c3'>&nbsp;</tr>";
+ print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</tr>";
print "</table>";
}