That didnt work alone dthadmin
But I commented out line 117 as well
//$email=array_pop($_REQUEST['Field']);
And now it works great
Looking at the query below it
if(!$my->id && $usercreation > 0){
$sql="SELECT COUNT(*) FROM #__users WHERE email='$email' ";
$database->setQuery($sql);
$total=$database->loadResult();
if($total){
echo JText::_( 'DT_JOOMLA_EMAIL_EXISTS' );
}else{
echo "true";
}
die ;
}
Should I comment any of that out as well
I thought if the $email was , well NULL then it won't effect it
Anyway line 117 commented out as well so far has not caused me any problems
Thanks again