diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/example/example.theme | 2 | ||||
-rw-r--r-- | themes/goofy/goofy.theme | 2 | ||||
-rw-r--r-- | themes/jeroen/jeroen.theme | 2 | ||||
-rw-r--r-- | themes/marvin/marvin.theme | 2 | ||||
-rw-r--r-- | themes/yaroon/yaroon.theme | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme index 3f4889685..67e857339 100644 --- a/themes/example/example.theme +++ b/themes/example/example.theme @@ -136,7 +136,7 @@ echo "</TABLE>"; } // close comment function - function box($subject, $content, $options = "") { + function box($subject, $content) { ?> diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 9444db289..34b9c7901 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -129,7 +129,7 @@ function c(subject,mod,author,date,body) {document.writeln("<table border=\"0\" } // close stripbreaks function - function box($subject, $content, $options = "") { + function box($subject, $content) { print "<script language=\"JavaScript\"><!--\nb(\"". $this->stripbreaks(addslashes($subject)) ."\",\"". $this->stripbreaks(addslashes($content)) ."\"); // -->\n</script>\n"; } // close box function diff --git a/themes/jeroen/jeroen.theme b/themes/jeroen/jeroen.theme index a4d0a30f7..952faed57 100644 --- a/themes/jeroen/jeroen.theme +++ b/themes/jeroen/jeroen.theme @@ -226,7 +226,7 @@ } // close comment function - function box($subject, $content, $options = "") { + function box($subject, $content) { $img = (rand(0, 50) == 25) ? "boxbottomright2.gif" : "boxbottomright1.gif"; $width = rand(10, 200); $img2 = (rand(0, 100) == 50) ? "boxtopleftside2.gif" : "boxtopleftside1.gif"; diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index 583011daf..d5eec8fb9 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -115,7 +115,7 @@ print "<br />\n\n"; } - function box($subject, $content, $options = "") { + function box($subject, $content) { print "\n<!-- box: \"$subject\" -->\n"; print "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\">\n"; print " <tr>\n"; diff --git a/themes/yaroon/yaroon.theme b/themes/yaroon/yaroon.theme index 50c7fafb1..db2cebcbb 100644 --- a/themes/yaroon/yaroon.theme +++ b/themes/yaroon/yaroon.theme @@ -192,7 +192,7 @@ } // close comment function - function box($subject, $content, $options = "") { + function box($subject, $content) { switch (rand(0,7)) { case 0: $img = "square.gif"; break; |