Commit aac3a3fb authored by Chris Graham's avatar Chris Graham
Browse files

Fixed MANTIS-4563 (Username checks not running in AJAX as intended)

parent 8759ab6f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ function username_check_script()
    require_code('cns_members_action2');
    require_lang('cns');

    $username = post_param_string('username', null, true);
    $username = get_param_string('username', null, true);
    if (!is_null($username)) {
        $username = trim($username);
    }