If you hate this...stop them and send them to index.php
***Important***backup and then open member.php
After:
$member['ID'] = $_POST['ID'];
$member['Password'] = md5( process_pass_data( $_POST['Password'] ) );
Insert:
//unconfirmed mod
$res = db_arr("SELECT `Status` FROM `Profiles` WHERE `NickName` = '$member[ID]'");
$stat = $res['Status'];
if ($stat == "Unconfirmed")
{
header('Location: index.php');
exit;
}
$res = db_arr("SELECT `Status` FROM `Profiles` WHERE `ID` = '$member[ID]'");
$stat = $res['Status'];
if ($stat == "Unconfirmed")
{
header('Location: index.php');
exit;
}
//unconfirmed mod end
you can test it out on my site /aaa where I setup to test