Changeset 1386 for branches/0.8/bb-includes/registration-functions.php
- Timestamp:
- 03/30/2008 10:36:13 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.8/bb-includes/registration-functions.php
r1359 r1386 5 5 '[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.'. 6 6 '[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$', $email)) { 7 if ( $check_domain &&function_exists('checkdnsrr') ) {7 if ( function_exists('checkdnsrr') ) { 8 8 list (, $domain) = explode('@', $email); 9 9 if ( checkdnsrr($domain . '.', 'MX') || checkdnsrr($domain . '.', 'A') ) { … … 86 86 87 87 function bb_send_pass( $user, $pass ) { 88 global $bbdb;89 88 if ( !$user = bb_get_user( $user ) ) 90 89 return false;
Note: See TracChangeset
for help on using the changeset viewer.