From 9062b566b28d6b658888c4ab6bae856827a8cab7 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Sun, 17 Feb 2002 13:04:50 +0000 Subject: - applying patches from Axel Kollmorgen. See http://list.drupal.org/drupal-devel/2002-February/thread.html#6678 http://list.drupal.org/drupal-devel/2002-February/thread.html#6629 - removed references to $this->user() from themes. - removed $BaseTheme->user(). It was deprecated a while back. NOTE: this update will break custom themes, so make sure you update your themes before updating! --- themes/example/example.theme | 2 +- themes/goofy/goofy.theme | 3 +-- themes/marvin/marvin.theme | 3 +-- themes/unconed/unconed.theme | 3 +-- 4 files changed, 4 insertions(+), 7 deletions(-) (limited to 'themes') 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 @@ user("all"); theme_blocks("all", $this); ?> 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 @@ user("all"); theme_blocks("all", $this); ?> 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 @@ user("all"); theme_blocks("all", $this); ?> -- cgit v1.2.3