Hi all, My callback function from validation rules isn’t being called. The other validation rules for that field ARE being called
$rules[‘login_name’] = “required|max_length[12]|alpha_dash|callback__check_login_name”;
function _check_login_name($login_name) {
echo "here"; // DOESNT WORK
}
So in the above line, required, max_length, alpha_dash are being called, but the callback isn't. Thanks!