diff options
author | flammy <flamabelde@yahoo.de> | 2013-06-24 15:05:59 +0300 |
---|---|---|
committer | flammy <flamabelde@yahoo.de> | 2013-06-24 15:05:59 +0300 |
commit | 88833bac87e7fb295c0479a8260d1d63051bca8d (patch) | |
tree | 00539440bbded3dc2e898fbebe2f4002cf198828 /lib/exe/css.php | |
parent | 8ff58cbbee0b684c609d5a559e51e9f4ba41dad4 (diff) | |
download | rpg-88833bac87e7fb295c0479a8260d1d63051bca8d.tar.gz rpg-88833bac87e7fb295c0479a8260d1d63051bca8d.tar.bz2 |
Fixes validation problems with base64 encoded images in CSS.
Diffstat (limited to 'lib/exe/css.php')
-rw-r--r-- | lib/exe/css.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php index 1e662c64a..768c8eda4 100644 --- a/lib/exe/css.php +++ b/lib/exe/css.php @@ -314,7 +314,7 @@ function css_datauri($match){ $data = base64_encode(file_get_contents($local)); } if($data){ - $url = 'data:image/'.$ext.';base64,'.$data; + $url = '\'data:image/'.$ext.';base64,'.$data.'\''; }else{ $url = $base.$url; } |