summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-07-07 11:14:25 +0000
committerDries Buytaert <dries@buytaert.net>2001-07-07 11:14:25 +0000
commitadfbda3d9a13c66cd1d596289745a39e9f486157 (patch)
treeb0f02b8ca1dd5de6f54f14a11a26981bdbcab5fb /themes
parent7cbd6cf01e918ebea45f4ca39ed634ac3c168159 (diff)
downloadbrdo-adfbda3d9a13c66cd1d596289745a39e9f486157.tar.gz
brdo-adfbda3d9a13c66cd1d596289745a39e9f486157.tar.bz2
- Tidied up some stuff in account.php and theme.inc.
- Tidied up the box() API.
Diffstat (limited to 'themes')
-rw-r--r--themes/example/example.theme2
-rw-r--r--themes/goofy/goofy.theme2
-rw-r--r--themes/jeroen/jeroen.theme2
-rw-r--r--themes/marvin/marvin.theme2
-rw-r--r--themes/yaroon/yaroon.theme2
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;