diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/example/example.theme | 2 | ||||
-rw-r--r-- | themes/goofy/goofy.theme | 3 | ||||
-rw-r--r-- | themes/marvin/marvin.theme | 3 | ||||
-rw-r--r-- | themes/unconed/unconed.theme | 3 |
4 files changed, 4 insertions, 7 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme index 326580c4c..90c22e5cd 100644 --- a/themes/example/example.theme +++ b/themes/example/example.theme @@ -1,7 +1,7 @@ <?php // $Id$ - class Theme extends BaseTheme { + class Theme_example extends BaseTheme { } diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 73c60f767..b0562c068 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -12,7 +12,7 @@ *********************************************************************/ - class Theme extends BaseTheme { + class Theme_goofy extends BaseTheme { // General colorset that can be used for this theme var $foreground = "#000000"; var $background = "#FFFFFF"; @@ -150,7 +150,6 @@ function c(subject,mod,author,date,body) {document.writeln("<table border=\"0\" </td> <td valign="top"> <?php - $this->user("all"); theme_blocks("all", $this); ?> </td> diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index fc3f5580b..bfed08274 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -11,7 +11,7 @@ *********************************************************************/ - class Theme extends BaseTheme { + class Theme_marvin extends BaseTheme { var $link = "#666699"; // General colorset that can be used for this theme @@ -174,7 +174,6 @@ </td> <td valign="top" width="200"> <?php - $this->user("all"); theme_blocks("all", $this); ?> </td> diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index c4346fdb6..78f4b3f46 100644 --- a/themes/unconed/unconed.theme +++ b/themes/unconed/unconed.theme @@ -11,7 +11,7 @@ *********************************************************************/ - class Theme extends BaseTheme { + class Theme_unconed extends BaseTheme { var $foreground = "#000000"; var $background = "#FFFFFF"; @@ -191,7 +191,6 @@ </TD> <TD VALIGN="top" WIDTH="20%"> <?php - $this->user("all"); theme_blocks("all", $this); ?> </TD> |