Get stylesheet
Permalinkjust wondering if anyone else is having this problem, i use the code
getStyleSheet('your_stylesheet.css')?>
to get a style sheet in a theme,
if the style sheet has images in the CSS they are not parsed correctly. if i use getThemePath they work,
code:
url('images/something.png')
when i look at the source its
url('http://site.com/index.php/tools/css/theme/'images/something.png'')
they 2 ' are not being stripped so no images show.
Anyone else? (SVN build from a few weeks ago)

I'm not at my computer, I can not verify what I say. But there was a solution.
I.e.
Instead of
.someclass {
background: url('somefile.jpg');
}
I use
.someclass {
background: url(somefile.jpg);
}