diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-03-15 21:29:33 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-03-15 21:29:33 +0100 |
commit | f8fb2d1811251304687b805a60b489f63cb5c4fb (patch) | |
tree | 9b520bb7e91a5ae13d9a13787308592319af65cf /lib/exe/css.php | |
parent | 1359eacbdbff842b241a85ea274a00982fec9267 (diff) | |
download | rpg-f8fb2d1811251304687b805a60b489f63cb5c4fb.tar.gz rpg-f8fb2d1811251304687b805a60b489f63cb5c4fb.tar.bz2 |
strip sourcemaps in CSS and JS #601
source maps are invalid for our dispatched sources and may even cause
problems. this makes sure any sourcemap declarations are stripped from
the output
Diffstat (limited to 'lib/exe/css.php')
-rw-r--r-- | lib/exe/css.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php index cab7384b2..9ac70905b 100644 --- a/lib/exe/css.php +++ b/lib/exe/css.php @@ -133,6 +133,9 @@ function css_out(){ $css = ob_get_contents(); ob_end_clean(); + // strip any source maps + stripsourcemaps($css); + // apply style replacements $css = css_applystyle($css, $styleini['replacements']); |