summaryrefslogtreecommitdiff
path: root/app/Api
diff options
context:
space:
mode:
Diffstat (limited to 'app/Api')
-rw-r--r--app/Api/Base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Api/Base.php b/app/Api/Base.php
index 1b2258af..445b35be 100644
--- a/app/Api/Base.php
+++ b/app/Api/Base.php
@@ -27,7 +27,7 @@ abstract class Base extends \Core\Base
$this->container['dispatcher']->dispatch('api.bootstrap', new Event);
if (! ($username === 'jsonrpc' && $password === $this->config->get('api_token'))) {
- throw new AuthenticationFailure('Wrond credentials');
+ throw new AuthenticationFailure('Wrong credentials');
}
}
}