]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/currentuserdesignaction.php
Uppercase hex color values
[quix0rs-gnu-social.git] / lib / currentuserdesignaction.php
index 2975256557dd72dda104664b7919363c266307b6..7c2520cf67cbf292334a821dd952be1caa99da15 100644 (file)
@@ -47,6 +47,23 @@ if (!defined('LACONICA')) {
 
 class CurrentUserDesignAction extends Action
 {
+
+    /**
+      * Show the user's design stylesheet
+      *
+      * @return nothing
+      */
+     function showStylesheets()
+     {
+         parent::showStylesheets();
+
+         $design = $this->getDesign();
+
+         if (!empty($design)) {
+             $design->showCSS($this);
+         }
+     }
+
     /**
      * A design for this action
      *
@@ -66,4 +83,6 @@ class CurrentUserDesignAction extends Action
 
         return $cur->getDesign();
     }
+
+
 }