Fix #15440 - Page number is not being updated in the URL after saving a designer's page

Fixes: #15440
Pull-request: #15464
Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2019-09-08 11:16:42 +02:00
commit f49c253b9a
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -1024,7 +1024,6 @@ function Save_as () {
if (data.id) {
selected_page = data.id;
}
$('#page_name').text(name);
Load_page(selected_page);
}
}); // end $.post()
@ -1185,7 +1184,7 @@ function Export_pages () {
}); // end $.get()
}// end export pages
function Load_page (page) {// s
function Load_page (page) {
if (designer_tables_enabled) {
var param_page = '';
var argsep = PMA_commonParams.get('arg_separator');