aboutsummaryrefslogtreecommitdiff
path: root/css.php
diff options
context:
space:
mode:
Diffstat (limited to 'css.php')
-rw-r--r--css.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/css.php b/css.php
index bbc4bef..2187eb3 100644
--- a/css.php
+++ b/css.php
@@ -17,7 +17,7 @@ try
{
$style = Style::by_name($_GET["name"]);
header("Content-Type: text/css; charset=UTF-8");
- echo $style->code;
+ echo str_replace("%root%", ".", $style->code);
}
catch(DoesNotExistError $e)
{