mirror of
https://github.com/vrana/adminer.git
synced 2025-08-07 07:06:45 +02:00
Fix MariaDB link to numeric types
This commit is contained in:
@@ -15,7 +15,10 @@ function bodyLoad(version, maria) {
|
||||
key = 0;
|
||||
if (maria) {
|
||||
for (var i = 1; i < obj.length; i++) {
|
||||
obj[i] = obj[i].replace(/\.html/, '/');
|
||||
obj[i] = obj[i]
|
||||
.replace(/\.html/, '/')
|
||||
.replace(/(numeric)(-type-overview)/, (maria ? '$1-data$2' : '$&')) // MariaDB
|
||||
;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user