Changeset 32653 for trunk/src/wp-admin/includes/ms.php
- Timestamp:
- 05/29/2015 05:03:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r32642 r32653 42 42 return $file; 43 43 } 44 add_filter( 'wp_handle_upload_prefilter', 'check_upload_size' );45 44 46 45 /** … … 301 300 wp_mail( $value, sprintf( __( '[%s] New Admin Email Address' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), $content ); 302 301 } 303 add_action( 'update_option_new_admin_email', 'update_option_new_admin_email', 10, 2 );304 add_action( 'add_option_new_admin_email', 'update_option_new_admin_email', 10, 2 );305 302 306 303 /** … … 384 381 } 385 382 } 386 add_action( 'personal_options_update', 'send_confirmation_on_profile_email' );387 383 388 384 /** … … 396 392 echo "<div class='update-nag'>" . sprintf( __( "Your email address has not been updated yet. Please check your inbox at %s for a confirmation email." ), $email['newemail'] ) . "</div>"; 397 393 } 398 add_action( 'admin_notices', 'new_user_email_admin_notice' );399 394 400 395 /** … … 491 486 <?php 492 487 } 493 add_action( 'wpmueditblogaction', 'upload_space_setting' );494 488 495 489 /** … … 622 616 return $term; 623 617 } 624 add_filter( 'get_term', 'sync_category_tag_slugs', 10, 2 );625 618 626 619 /** … … 663 656 wp_die( $output, 403 ); 664 657 } 665 add_action( 'admin_page_access_denied', '_access_denied_splash', 99 );666 658 667 659 /** … … 678 670 return true; 679 671 } 680 add_filter( 'import_allow_create_users', 'check_import_new_users' );681 672 // See "import_allow_fetch_attachments" and "import_attachment_size_limit" filters too. 682 673 … … 747 738 echo "<div class='update-nag'>" . sprintf( __( 'Thank you for Updating! Please visit the <a href="%s">Upgrade Network</a> page to update all your sites.' ), esc_url( network_admin_url( 'upgrade.php' ) ) ) . "</div>"; 748 739 } 749 add_action( 'admin_notices', 'site_admin_notice' );750 add_action( 'network_admin_notices', 'site_admin_notice' );751 740 752 741 /** … … 783 772 return $data; 784 773 } 785 add_filter( 'wp_insert_post_data', 'avoid_blog_page_permalink_collision', 10, 2 );786 774 787 775 /**
Note: See TracChangeset
for help on using the changeset viewer.