Changeset 10810 for trunk/wp-includes/pluggable.php
- Timestamp:
- 03/18/2009 02:43:45 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/pluggable.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r10730 r10810 331 331 /* If we don't have an email from the input headers default to wordpress@$sitename 332 332 * Some hosts will block outgoing mail from this address if it doesn't exist but 333 * there's no easy alternative. Defaulting to admin_email might appear to be another 333 * there's no easy alternative. Defaulting to admin_email might appear to be another 334 334 * option but some hosts may refuse to relay mail from an unknown domain. See 335 335 * http://trac.wordpress.org/ticket/5007. 336 336 */ 337 337 338 338 if ( !isset( $from_email ) ) { 339 339 // Get the site domain and get rid of www. … … 1384 1384 * 1385 1385 * @param int $length The length of password to generate 1386 * @param bool $special_chars Whether to include standard special characters 1386 * @param bool $special_chars Whether to include standard special characters 1387 1387 * @return string The random password 1388 1388 **/ … … 1519 1519 1520 1520 if ( is_ssl() ) 1521 $host = 'https://secure.gravatar.com'; 1521 $host = 'https://secure.gravatar.com'; 1522 1522 else 1523 1523 $host = 'http://www.gravatar.com';
Note: See TracChangeset
for help on using the changeset viewer.