The branch, master has been updated via 81cddb25147c648f23144d2b34acd31e9f460b84 (commit) from 27b5898068a707c76bfdd07462b72a5bd96df573 (commit)
- Log ----------------------------------------------------------------- commit 81cddb25147c648f23144d2b34acd31e9f460b84 Author: Marc Delisle marc@infomarc.info Date: Fri Nov 5 06:04:00 2010 -0400
bug 3084745 js error under Chrome (Linux)
-----------------------------------------------------------------------
Summary of changes: js/functions.js | 4 ++-- js/server_privileges.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/js/functions.js b/js/functions.js index 6e81baf..9015564 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1643,7 +1643,7 @@ $(document).ready(function() { $('<div id="create_table_dialog"></div>') .append(data) .dialog({ - title: top.frame_content.PMA_messages['strCreateTable'], + title: PMA_messages['strCreateTable'], width: 900, buttons : button_options }); // end dialog options @@ -1973,7 +1973,7 @@ $(document).ready(function() { $.get($(this).attr('href'), {'ajax_request': true}, function(data) { $('<div id="change_password_dialog></div>') .dialog({ - title: top.frame_content.PMA_messages['strChangePassword'], + title: PMA_messages['strChangePassword'], width: 600, buttons : button_options }) diff --git a/js/server_privileges.js b/js/server_privileges.js index f4fe3ae..6892376 100644 --- a/js/server_privileges.js +++ b/js/server_privileges.js @@ -207,7 +207,7 @@ $(document).ready(function() { .find("#addUsersForm").append('<input type="hidden" name="ajax_request" value="true" />') .end() .dialog({ - title: top.frame_content.PMA_messages['strAddNewUser'], + title: PMA_messages['strAddNewUser'], width: 800, modal: true, buttons: button_options
hooks/post-receive