diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-25 14:16:59 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-25 14:16:59 -0400 |
commit | 87c711cb55399bd858d61cf3974fa163a9add2ee (patch) | |
tree | d372a1efa71d74125c1dd9d088efee43fa000822 /app | |
parent | 4414fbfc93a88ce222189da019398a812f72835f (diff) |
Fix another typo
Diffstat (limited to 'app')
-rw-r--r-- | app/Api/Base.php | 2 |
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'); } } } |