Not a biggy
but while trying to identify another problem i noticed in my server logs that the manager was making a bad call for an image.
the call is:
File does not exist: /blah/blah/blah/manager/media/style/MODxCarbonimages/_tx_.gif
of course it can’t find the image which is in /MODxCarbon/images/
the call is missing the directory divider ’/’ (is that what its called?)
It is only just this one image that is being called wrongly _tx_.gif
I have checked that it isn’t a rewrite problem in htaccess.
anyone know where to go to mend this?
thanks.
Have a look in manager/media/style/MODxCarbon/style.php - line 116
Current:
$_style["tx"] = $style_path."images/misc/_tx_.gif";
Should be (according to where the file is actually located):
$_style["tx"] = $style_path."images/_tx_.gif";
Change that and see if it helps
-
☆ A M B ☆
- 2,213 Posts
Can someone add this to jira so they can fix in 1.0.3?