aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Zotlabs/Zot/Auth.php8
-rw-r--r--version.inc2
2 files changed, 5 insertions, 5 deletions
diff --git a/Zotlabs/Zot/Auth.php b/Zotlabs/Zot/Auth.php
index d0374ad7e..715676979 100644
--- a/Zotlabs/Zot/Auth.php
+++ b/Zotlabs/Zot/Auth.php
@@ -57,7 +57,7 @@ class Auth {
if(strstr($this->desturl,z_root() . '/rmagic'))
goaway(z_root());
- $this->reply_die();
+ $this->reply_die('');
}
@@ -259,7 +259,7 @@ class Auth {
}
- function reply_die($msg,$goaway = true) {
+ function reply_die($msg) {
if($msg) {
if(array_key_exists('message',$this->ret))
$this->ret['message'] .= $msg;
@@ -268,8 +268,8 @@ class Auth {
}
if($this->test)
json_return_and_die($this->ret);
- if($goaway)
- goaway($this->desturl);
+
+ goaway($this->desturl);
}
}
diff --git a/version.inc b/version.inc
index 2d04a5143..3c7cd4dfb 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2015-12-08.1240
+2015-12-09.1241