diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-01-29 13:28:28 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-01-29 13:28:28 +0100 |
commit | 3a56e70e888ce9420c72add656726dc623a45894 (patch) | |
tree | ba1cd2108d58f0e7196917227f3e914ae0ae1df7 /css.php | |
parent | c91f5d5d77b55b1579b6020ad2dea3a8801eb106 (diff) | |
download | ratatoeskr-cms-3a56e70e888ce9420c72add656726dc623a45894.tar.gz ratatoeskr-cms-3a56e70e888ce9420c72add656726dc623a45894.tar.bz2 ratatoeskr-cms-3a56e70e888ce9420c72add656726dc623a45894.zip |
You can now use %root% in CSS styles too.
Diffstat (limited to 'css.php')
-rw-r--r-- | css.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |