summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-05-25 14:16:59 -0400
committerFrederic Guillot <fred@kanboard.net>2015-05-25 14:16:59 -0400
commit87c711cb55399bd858d61cf3974fa163a9add2ee (patch)
treed372a1efa71d74125c1dd9d088efee43fa000822
parent4414fbfc93a88ce222189da019398a812f72835f (diff)
Fix another typo
-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');
}
}
}