Merge pull request #5255 from tivnet/patch-1
Update html-admin-page-status-report.php
This commit is contained in:
commit
51f5108aa0
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue