summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/js/requests/identity.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/js/requests/identity.js b/client/js/requests/identity.js
index 7a08714..d34af53 100644
--- a/client/js/requests/identity.js
+++ b/client/js/requests/identity.js
@@ -9,7 +9,7 @@ identity.requestParser = {}; // Parser part
identity.request.login=function($http,username, password,projectname){
var requestResultObject={};
- return $http.post('http://localhost.istic-openstack/server/index.php',
+ return $http.post('../server/index.php',
$.param({"task" : "Authenticate", "user" : username, "password" : password, "project" : projectname}),
{headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'}});
};