Skip to:
Content

bbPress.org


Ignore:
Timestamp:
03/30/2008 10:36:13 AM (18 years ago)
Author:
sambauers
Message:

Various optimisations and typo fixes - Fixes #842 - props momo360modena - branches/0.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.8/bb-includes/registration-functions.php

    r1359 r1386  
    55        '[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.'.
    66        '[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$', $email)) {
    7         if ( $check_domain && function_exists('checkdnsrr') ) {
     7        if ( function_exists('checkdnsrr') ) {
    88            list (, $domain)  = explode('@', $email);
    99            if ( checkdnsrr($domain . '.', 'MX') || checkdnsrr($domain . '.', 'A') ) {
     
    8686
    8787function bb_send_pass( $user, $pass ) {
    88     global $bbdb;
    8988    if ( !$user = bb_get_user( $user ) )
    9089        return false;
Note: See TracChangeset for help on using the changeset viewer.