Changeset 1385 for trunk/bb-includes/registration-functions.php
- Timestamp:
- 03/30/2008 10:31:06 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/bb-includes/registration-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-includes/registration-functions.php
r1364 r1385 19 19 '[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.'. 20 20 '[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$', $email)) { 21 if ( $check_domain &&function_exists('checkdnsrr') ) {21 if ( function_exists('checkdnsrr') ) { 22 22 list (, $domain) = explode('@', $email); 23 23 if ( checkdnsrr($domain . '.', 'MX') || checkdnsrr($domain . '.', 'A') ) { … … 163 163 */ 164 164 function bb_send_pass( $user, $pass ) { 165 global $bbdb;166 165 if ( !$user = bb_get_user( $user ) ) 167 166 return false;
Note: See TracChangeset
for help on using the changeset viewer.