Reputation: 185
I'm getting this issue with my joomla site:
Fatal error: Class 'Browser' not found in /home/heidivision/pmbrandvold.com/templates/js_wright/wright/doctypes/default.php on line 66
I'm running the JS Wright template by Joomlashack on Joomla 2.5 - I did update a few extensions, but I honestly can't remember which ones...I didn't think the template was updated at all, but that's when it broke.
Upvotes: 0
Views: 77
Reputation: 19733
I'll write this as an answer so other can easily see it's the solutions.
Browser
is not a default class that belongs to Joomla, but JBrowser
is. So assuming that template developer was trying to utilize this, find the line where the error is coming from and replace Browser
with JBrowser
.
I'd also suggest telling the developer of the template so they can fix it in their next update.
Upvotes: 1