Changeset 13197 for trunk/wp-includes/formatting.php
- Timestamp:
- 02/18/2010 07:43:44 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r13177 r13197 2381 2381 switch ($option) { 2382 2382 case 'admin_email': 2383 if ( !$value = sanitize_email($value) && function_exists('add_settings_error') ) 2383 $value = sanitize_email($value); 2384 if ( !$value && function_exists('add_settings_error') ) 2384 2385 add_settings_error('admin_email', 'invalid_admin_email', __('The E-Mail Address submitted was not in the right format. Please enter a valid Email Address')); 2385 2386 2386 break; 2387 2387
Note: See TracChangeset
for help on using the changeset viewer.