You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function check_email_validity($userid, $alert_msgs)
{
include_once 'db.php';
$db = new db();
$sql = "SELECT `email`, `email_invalid` FROM `gk-users` WHERE `userid`='$userid' LIMIT 1";
$row = $db->exec_fetch_row($sql, $num_rows);
list($email, $email_invalid) = $row;
$message = sprintf(_('Your currently configured email address (%s) seems to be invalid. Please <a href="/edit.php?co=email">update your email address</a> in the preferences.'), $email);