diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-07-16 12:32:22 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-07-16 12:32:22 +0200 |
commit | e237dfc660b7f3e7115dfb995479492b5cd2337f (patch) | |
tree | d528400bd8976046cb307f0550ba19f157ab9de6 | |
parent | 641029ab180dcd8a31c0971563007f76f5151ee7 (diff) | |
download | volse-hubzilla-e237dfc660b7f3e7115dfb995479492b5cd2337f.tar.gz volse-hubzilla-e237dfc660b7f3e7115dfb995479492b5cd2337f.tar.bz2 volse-hubzilla-e237dfc660b7f3e7115dfb995479492b5cd2337f.zip |
check for variables in schemes
-rw-r--r-- | view/theme/redbasic/php/style.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 83c35935a..2d6ee38c5 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -213,7 +213,7 @@ if($align_left && file_exists('view/theme/redbasic/css/align_left.css')) { } if($schemecss) { - echo $schemecss; + echo str_replace(array_keys($options), array_values($options), $schemecss); } // Set the schema to the default schema in derived themes. See the documentation for creating derived themes how to override this. |