/home/fdd/public_html/inc/js/join.js
changes in bold below and i will display pop-up windows on error and dont forget to clear the cache and reload the page before testing . tested on 7.0.9
function doShowJoinErrors( aErrors, eForm ) {
if( !aErrors || !eForm )
return false;
var bHaveErrors = false;
var sErrorlist = '';
for( var iInd = 0; iInd < aErrors.length; iInd ++ ) {
var aErrorsInd = aErrors[iInd];
for( var sField in aErrorsInd ) {
var sError = aErrorsInd[ sField ];
sErrorlist = sErrorlist + ' ' + sError + '\n';
bHaveErrors = true;
doShowError( eForm, sField, iInd, sError );
}
}
if( bHaveErrors ){
alert( sErrorlist );
doShowError( eForm, 'do_submit', 0, _t('_Errors in join form') );
}
else
eForm.submit();
}