Skip to:
Content

bbPress.org


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

Various optimisations and typo fixes - Fixes #842 - props momo360modena

File:
1 edited

Legend:

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

    r1364 r1385  
    1919        '[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.'.
    2020        '[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$', $email)) {
    21         if ( $check_domain && function_exists('checkdnsrr') ) {
     21        if ( function_exists('checkdnsrr') ) {
    2222            list (, $domain)  = explode('@', $email);
    2323            if ( checkdnsrr($domain . '.', 'MX') || checkdnsrr($domain . '.', 'A') ) {
     
    163163 */
    164164function bb_send_pass( $user, $pass ) {
    165     global $bbdb;
    166165    if ( !$user = bb_get_user( $user ) )
    167166        return false;
Note: See TracChangeset for help on using the changeset viewer.