summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/remote.php3
-rw-r--r--lib/exe/xmlrpc.php1
2 files changed, 2 insertions, 2 deletions
diff --git a/inc/remote.php b/inc/remote.php
index 0a507e95d..82a0d3c08 100644
--- a/inc/remote.php
+++ b/inc/remote.php
@@ -23,7 +23,8 @@ class RemoteAccessDeniedException extends RemoteException {}
* )
* 'name' => 'method name in class',
* 'return' => 'type',
-* ['doc' = 'method documentation'],
+ * 'public' => 1/0 - method bypass default group check (used by login)
+ * ['doc' = 'method documentation'],
* )
* )
*
diff --git a/lib/exe/xmlrpc.php b/lib/exe/xmlrpc.php
index ce9ef1484..a48ac41b0 100644
--- a/lib/exe/xmlrpc.php
+++ b/lib/exe/xmlrpc.php
@@ -34,7 +34,6 @@ class dokuwiki_xmlrpc_server extends IXR_Server {
function call($methodname, $args){
try {
- //print 'a';
$result = $this->remote->call($methodname, $args);
return $result;
} catch (RemoteAccessDeniedException $e) {