diff options
| author | Leonardo Sápiras | 2010-06-01 22:29:35 +0000 |
|---|---|---|
| committer | ioguix | 2010-06-01 22:29:35 +0000 |
| commit | 799e1c993869ca07cf61964b1c530fe094f0cf46 (patch) | |
| tree | d7c1da427c73964f14781ffd3f08ff829ffe2815 /js | |
| parent | 6d2d790391a18067d7a28698facdf94c6e519d07 (diff) | |
Fix bad parameter name for database on ajax locks page refresh request
Diffstat (limited to 'js')
| -rw-r--r-- | js/locks.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/locks.js b/js/locks.js index e069f1e9..d532bd6f 100644 --- a/js/locks.js +++ b/js/locks.js @@ -15,7 +15,8 @@ $(document).ready(function() { query = $.ajax({ type: 'GET', dataType: 'html', - url: 'database.php?action=refresh_locks&' + Database.server, + data: {server: Database.server, database: Database.dbname, action: 'refresh_locks'}, + url: 'database.php', cache: false, contentType: 'application/x-www-form-urlencoded', success: function(html) { |
