for now, on or around line 1273 of component/com_smf/smf.class.php change the following code:
to this:
let me know the result. Also, please verify that this SMF user had *no* avatar uploaded.
Code:
if (!($filename = $database->loadResult())) {
mosErrorAlert($database->getErrorMsg().' ~~~ FROM::'.__FILE__.' || '.__FUNCTION__.' || '.__LINE__);
return false;
}
mosErrorAlert($database->getErrorMsg().' ~~~ FROM::'.__FILE__.' || '.__FUNCTION__.' || '.__LINE__);
return false;
}
to this:
Code:
if (!($filename = $database->loadResult())) {
//mosErrorAlert($database->getErrorMsg().' ~~~ FROM::'.__FILE__.' || '.__FUNCTION__.' || '.__LINE__);
//return false;
//this probably means there is no avatar, so continue
continue;
}
//mosErrorAlert($database->getErrorMsg().' ~~~ FROM::'.__FILE__.' || '.__FUNCTION__.' || '.__LINE__);
//return false;
//this probably means there is no avatar, so continue
continue;
}
let me know the result. Also, please verify that this SMF user had *no* avatar uploaded.
Works like a charm Wolverine - Thank you!!
Forum 








