From 5982060f3bbad531f397bc9ca0fb2341203f3ca3 Mon Sep 17 00:00:00 2001 From: Adrian Jones Date: Sat, 8 Feb 2025 13:06:31 -0800 Subject: [PATCH] Fix links to MySQL docs It was directing to https://dev.mysql.com/doc/refman/9.2en/select.html instead of https://dev.mysql.com/doc/refman/9.2/en/select.html --- adminer/static/editing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/static/editing.js b/adminer/static/editing.js index 6478af35..b20bd527 100644 --- a/adminer/static/editing.js +++ b/adminer/static/editing.js @@ -30,7 +30,7 @@ function bodyLoad(version, maria) { } obj[key] = (maria ? obj[key].replace('dev.mysql.com/doc/mysql/en/', 'mariadb.com/kb/en/') : obj[key]) // MariaDB - .replace('/doc/mysql/', '/doc/refman/' + version) // MySQL + .replace('/doc/mysql/', '/doc/refman/' + version + '/') // MySQL .replace('/docs/current/', '/docs/' + version) // PostgreSQL ; }