diff --git a/htroot/api/yacydoc.html b/htroot/api/yacydoc.html index 4f3b09448..89236c710 100644 --- a/htroot/api/yacydoc.html +++ b/htroot/api/yacydoc.html @@ -13,7 +13,7 @@ you can validate it with http://validator.w3.org/
-API +API This search result can also be retrieved as XML. Click the API icon to see an example call to the search rss API. To see a list of all APIs, please visit the API wiki page. diff --git a/source/net/yacy/search/Switchboard.java b/source/net/yacy/search/Switchboard.java index 98f904e0f..d63c31798 100644 --- a/source/net/yacy/search/Switchboard.java +++ b/source/net/yacy/search/Switchboard.java @@ -775,7 +775,7 @@ public final class Switchboard extends serverSwitch // that an automatic authorization of localhost is done, because in this case crawls from local // addresses are blocked to prevent attack szenarios where remote pages contain links to localhost // addresses that can steer a YaCy peer - if ( (getConfigBool("adminAccountForLocalhost", false)) ) { + if ( !getConfigBool("adminAccountForLocalhost", false) ) { if ( getConfig(SwitchboardConstants.ADMIN_ACCOUNT_B64MD5, "").startsWith("0000") ) { // the password was set automatically with a random value. // We must remove that here to prevent that a user cannot log in any more @@ -3449,4 +3449,4 @@ public final class Switchboard extends serverSwitch this.shutdownSync.acquire(); return this.terminate; } -} +}