From 2688b367a87ccb3bd79f728a5b483fcf0a2d55e2 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 23 Jul 2014 08:36:08 -0700 Subject: [PATCH] Remove code for older MySQL version (no longer supported) Signed-off-by: Marc Delisle --- libraries/server_status_monitor.lib.php | 88 +++++++++++-------------- 1 file changed, 38 insertions(+), 50 deletions(-) diff --git a/libraries/server_status_monitor.lib.php b/libraries/server_status_monitor.lib.php index 5ab1c02f1e..fd03377dc3 100644 --- a/libraries/server_status_monitor.lib.php +++ b/libraries/server_status_monitor.lib.php @@ -147,56 +147,44 @@ function PMA_getHtmlForInstructionsDialog() . ' by up to 15%.' ); - if (PMA_MYSQL_INT_VERSION < 50106) { - $retval .= '

'; - $retval .= PMA_Util::getImage('s_attention.png'); - $retval .= __( - 'Unfortunately your Database server does not support logging to table,' - . ' which is a requirement for analyzing the database logs with' - . ' phpMyAdmin. Logging to table is supported by MySQL 5.1.6 and' - . ' onwards. You may still use the server charting features however.' - ); - $retval .= '

'; - } else { - $retval .= '

'; - $retval .= ''; - $retval .= '
'; - $retval .= ''; - } + $retval .= '

'; + $retval .= ''; + $retval .= '
'; + $retval .= ''; $retval .= ''; return $retval;