Merge pull request #3483 from BFTrick/add-multisite-system-status

Moving Multisite to it's Own Line in the System Status
This commit is contained in:
Mike Jolley 2013-07-18 06:15:41 -07:00
commit fbd6326f14
1 changed files with 5 additions and 1 deletions

View File

@ -91,8 +91,12 @@ function woocommerce_status_report() {
</tr>
<tr>
<td><?php _e( 'WP Version','woocommerce' ); ?>:</td>
<td><?php if ( is_multisite() ) echo 'WPMU'; else echo 'WP'; ?> <?php echo bloginfo('version'); ?></td>
<td><?php echo bloginfo('version'); ?></td>
</tr>
<tr>
<td><?php _e( 'WP Multisite Enabled','woocommerce' ); ?>:</td>
<td><?php if ( is_multisite() ) echo __( 'Yes', 'woocommerce' ); else echo __( 'No', 'woocommerce' ); ?></td>
</tr>
<tr>
<td><?php _e( 'Web Server Info','woocommerce' ); ?>:</td>
<td><?php echo esc_html( $_SERVER['SERVER_SOFTWARE'] ); ?></td>