blob: c730f4da1ce270b45976031f0eba3403a6390a9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- phpMyAdmin-3.5.7-all-languages/libraries/common.lib.php~ 2013-02-15 14:20:13.675872709 +0100
+++ phpMyAdmin-3.5.7-all-languages/libraries/common.lib.php 2013-02-15 14:20:34.185961593 +0100
@@ -3752,7 +3752,7 @@
$server_type = 'MySQL';
if (PMA_DRIZZLE) {
$server_type = 'Drizzle';
- } else if (strpos(PMA_MYSQL_STR_VERSION, 'mariadb') !== false) {
+ } else if (strpos(strtolower(PMA_MYSQL_STR_VERSION), 'mariadb') !== false) {
$server_type = 'MariaDB';
} else if (stripos(PMA_MYSQL_VERSION_COMMENT, 'percona') !== false) {
$server_type = 'Percona Server';
|