Skip to content
Snippets Groups Projects
Commit 6a5d6817 authored by Anika Henke's avatar Anika Henke
Browse files

Revert "Fixes validation problems with base64 encoded images in CSS."

This reverts commit 88833bac.
and fixes FS#2874
parent 38d74b12
No related branches found
No related tags found
No related merge requests found
......@@ -422,7 +422,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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment