1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-03 02:14:16 +00:00

Merge pull request #3039 from ngosang/webui_relative_urls

Web UI: Fix login and logout relative URLs. Closes #3038
This commit is contained in:
sledgehammer999 2015-05-17 18:43:38 +03:00
commit d222dece92
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=8" /> <meta http-equiv="X-UA-Compatible" content="IE=8" />
<title>QBT_TR(qBittorrent web User Interface)QBT_TR</title> <title>QBT_TR(qBittorrent web User Interface)QBT_TR</title>
<link rel="stylesheet" type="text/css" href="/css/style.css" /> <link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="scripts/mootools-1.2-core-yc.js" charset="utf-8"></script> <script type="text/javascript" src="scripts/mootools-1.2-core-yc.js" charset="utf-8"></script>
<script type="text/javascript"> <script type="text/javascript">
window.onload = function() { window.onload = function() {
@ -21,7 +21,7 @@
function submitLoginForm() { function submitLoginForm() {
new Request({ new Request({
url: '/login', url: 'login',
method: 'post', method: 'post',
data: $('loginform').toQueryString(), data: $('loginform').toQueryString(),
onComplete: function() { onComplete: function() {

View File

@ -371,7 +371,7 @@ initializeWindows = function() {
addClickEvent('logout', function(e) { addClickEvent('logout', function(e) {
new Event(e).stop(); new Event(e).stop();
new Request({ new Request({
url: '/logout', url: 'logout',
method: 'get', method: 'get',
onSuccess: function() { onSuccess: function() {
window.location.reload(); window.location.reload();
@ -396,4 +396,4 @@ initializeWindows = function() {
new Event(e).stop(); new Event(e).stop();
}); });
}); });
} }