Enabling IP auth
authorDennis Schafroth <dennis@indexdata.com>
Thu, 10 Jun 2010 18:09:49 +0000 (20:09 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Thu, 10 Jun 2010 18:09:49 +0000 (20:09 +0200)
www/iphone/example_client.js

index 336739b..6eacd1b 100644 (file)
@@ -80,7 +80,7 @@ function login() {
 }
 
 function logout() {
-    auth.logOut(loggedOut, loggingOutFailed, false);
+    auth.logOut(loggedOut, loggingOutFailed, true);
 }
 
 function logInOrOut() {
@@ -98,7 +98,7 @@ function loggedIn() {
 }
 
 function auth_check() {
-    auth.check(loggedIn, login, false);
+    auth.check(loggedIn, login, true);
 }
 
 //