Error with this mod is not loading lang files correctly:
http://community.mybb.com/mods.php?action=view&pid=44
I would have posted this in their thread for the mod but it seems to be gone completely.
Here's the fix..
inc/plugins/referers.php
Find all instances of this (partial):
Replace the entire line with:
There is 1 instance of that has a " instead of a ':
So pay attention, now there are no lang issues.
Or use the file below...
http://community.mybb.com/mods.php?action=view&pid=44
I would have posted this in their thread for the mod but it seems to be gone completely.
Here's the fix..
inc/plugins/referers.php
Find all instances of this (partial):
$lang->load(
Replace the entire line with:
$lang->load('referers');
There is 1 instance of that has a " instead of a ':
$lang->load("referers");
So pay attention, now there are no lang issues.
Or use the file below...