diff options
Diffstat (limited to 'lib/currentuserdesignaction.php')
-rw-r--r-- | lib/currentuserdesignaction.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/currentuserdesignaction.php b/lib/currentuserdesignaction.php index 40502bc77..7c2520cf6 100644 --- a/lib/currentuserdesignaction.php +++ b/lib/currentuserdesignaction.php @@ -58,7 +58,10 @@ class CurrentUserDesignAction extends Action parent::showStylesheets(); $design = $this->getDesign(); - $design->showCSS($this); + + if (!empty($design)) { + $design->showCSS($this); + } } /** |