Hi SMF Hacks,
This may not be related to your mod but I noticed the other day that when I try to send a PM to someone the Member name auto fill does not work any more.
What I mean is when you send a Personal Message to someone you start to type a name into the To: box and member names appear as suggestions.. this stopped working on my forum and I ask for support on the main SMF site and someone suggested this:
Somewhere in your code (most likely index.template.php), you have:
window.onload=smfgallery_insert;
replace it with:
function listen(evnt, elem, func) {
if (elem.addEventListener) // W3C DOM
elem.addEventListener(evnt,func,false);
else if (elem.attachEvent) { // IE DOM
var r = elem.attachEvent("on"+evnt, func);
return r;
}
}
listen("load", window, smfgallery_insert);
Is this something to do with SMF Gallery Pro? Where would I find window.onload=smfgallery_insert; as it does not appear to be where they suggested?
Thanks
M