diff --git a/adminer/static/editing.js b/adminer/static/editing.js index 8ef5a93d..f4e7ac38 100644 --- a/adminer/static/editing.js +++ b/adminer/static/editing.js @@ -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 + ; } } }