Closed kara-todd closed 12 years ago
I had a problem where images that were un-sized returned invalid file paths. I tracked the issue down to an extra '/' being appended to the beginning of the file path.
The following line of code fixed this for me added at line #229:
if($this->image{0} == '/') { $this->image = substr($this->image, 1); }
I had a problem where images that were un-sized returned invalid file paths. I tracked the issue down to an extra '/' being appended to the beginning of the file path.
The following line of code fixed this for me added at line #229: