Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-09-04 11:53:22 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-09-09 18:02:33 +0300
commitd16bc93ff154a8bcc2daa2ca50d5d6435d14a63c (patch)
tree02eb044de57eea3974aa61ed289e0780969796a0 /server_binlog.php
parent256be5b85907117fb5dc3faff4a8a11770c7c9c8 (diff)
Remove Drizzle support from functionalities in server level
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'server_binlog.php')
-rw-r--r--server_binlog.php16
1 files changed, 7 insertions, 9 deletions
diff --git a/server_binlog.php b/server_binlog.php
index 4d07e7ace4..a04802c64d 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -21,15 +21,13 @@ require_once 'libraries/server_bin_log.lib.php';
/**
* array binary log files
*/
-$binary_logs = PMA_DRIZZLE
- ? null
- : $GLOBALS['dbi']->fetchResult(
- 'SHOW MASTER LOGS',
- 'Log_name',
- null,
- null,
- PMA_DatabaseInterface::QUERY_STORE
- );
+$binary_logs = $GLOBALS['dbi']->fetchResult(
+ 'SHOW MASTER LOGS',
+ 'Log_name',
+ null,
+ null,
+ PMA_DatabaseInterface::QUERY_STORE
+);
if (! isset($_REQUEST['log'])
|| ! array_key_exists($_REQUEST['log'], $binary_logs)