Merge pull request #5255 from tivnet/patch-1

Update html-admin-page-status-report.php
This commit is contained in:
Mike Jolley 2014-04-04 13:54:12 +01:00
commit 51f5108aa0
1 changed files with 7 additions and 1 deletions

View File

@ -47,7 +47,13 @@
</tr>
<tr>
<td><?php _e( 'MySQL Version','woocommerce' ); ?>:</td>
<td><?php if ( function_exists( 'mysql_get_server_info' ) ) echo esc_html( mysql_get_server_info() ); ?></td>
<td>
<?php
/** @global wpdb $wpdb */
global $wpdb;
echo $wpdb->db_version();
?>
</td>
</tr>
<tr>
<td><?php _e( 'WP Memory Limit','woocommerce' ); ?>:</td>