Changeset 34778 for trunk/src/wp-includes/ms-load.php
- Timestamp:
- 10/02/2015 07:07:23 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/ms-load.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-load.php
r34099 r34778 35 35 */ 36 36 function wp_get_active_network_plugins() { 37 $active_plugins = (array) get_ site_option( 'active_sitewide_plugins', array() );37 $active_plugins = (array) get_network_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_ site_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_network_option( 'admin_email', 'support@' . get_current_site()->domain ) ) ) ); 100 100 } 101 101
Note: See TracChangeset
for help on using the changeset viewer.