diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/marvin/marvin.theme | 5 | ||||
-rw-r--r-- | themes/unconed/unconed.theme | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index d63cbba76..9f562af61 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -94,10 +94,11 @@ print "<BR><BR>\n\n"; } - function controls($threshold, $mode, $order) { + function controls() { print "<TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\">\n"; print " <TR><TD BGCOLOR=\"#000000\"><IMG SRC=\"themes/marvin/images/pixel.gif\" WIDTH=\"100%\" HEIGHT=\"0\" ALT=\"\"></TD></TR>\n"; - print " <TR><TD>". comment_controls($threshold, $mode, $order) ."</TD></TR>\n"; + print " <TR><TD> </TD></TR>\n"; + print " <TR><TD>". comment_controls() ."</TD></TR>\n"; print " <TR><TD BGCOLOR=\"#000000\"><IMG SRC=\"themes/marvin/images/pixel.gif\" WIDTH=\"100%\" HEIGHT=\"0\" ALT=\"\"></TD></TR>\n"; print "</TABLE>"; } diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index bb93d4a60..34bf2677d 100644 --- a/themes/unconed/unconed.theme +++ b/themes/unconed/unconed.theme @@ -140,9 +140,9 @@ <? } - function controls($threshold, $mode, $order) { + function controls() { print "<HR>"; - print comment_controls($threshold, $mode, $order); + print comment_controls(); print "<HR>"; } |