Changeset 34912 for trunk/src/wp-includes/ms-load.php
- Timestamp:
- 10/07/2015 05:11:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-load.php
r34778 r34912 35 35 */ 36 36 function wp_get_active_network_plugins() { 37 $active_plugins = (array) get_ network_option( 'active_sitewide_plugins', array() );37 $active_plugins = (array) get_site_option( 'active_sitewide_plugins', array() ); 38 38 if ( empty( $active_plugins ) ) 39 39 return array(); … … 97 97 return WP_CONTENT_DIR . '/blog-inactive.php'; 98 98 else 99 wp_die( sprintf( __( 'This site has not been activated yet. If you are having problems activating your site, please contact <a href="mailto:%1$s">%1$s</a>.' ), str_replace( '@', ' AT ', get_ network_option( 'admin_email', 'support@' . get_current_site()->domain ) ) ) );99 wp_die( sprintf( __( 'This site has not been activated yet. If you are having problems activating your site, please contact <a href="mailto:%1$s">%1$s</a>.' ), str_replace( '@', ' AT ', get_site_option( 'admin_email', 'support@' . get_current_site()->domain ) ) ) ); 100 100 } 101 101
Note: See TracChangeset
for help on using the changeset viewer.