diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-02-14 19:12:13 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-02-14 19:12:13 +0100 |
commit | b8facbbd7a9a29c6274c435932b9c810155e2460 (patch) | |
tree | c87b80ad013c6368fea3484462db3f0f7a7b4601 /application/controllers/api/v1 | |
parent | bfbbf4082779a7535cac2fb270fd928178ae7e70 (diff) |
Fix typo in error message
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/controllers/api/v1')
-rw-r--r-- | application/controllers/api/v1/file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/controllers/api/v1/file.php b/application/controllers/api/v1/file.php index fc5565416..a10aaf63a 100644 --- a/application/controllers/api/v1/file.php +++ b/application/controllers/api/v1/file.php @@ -24,7 +24,7 @@ class file extends \controllers\api\api_controller { $files = getNormalizedFILES(); if (empty($files)) { - throw new \exceptions\PublicApiException("file/no-file", "No file was uploaded or unknown error occured."); + throw new \exceptions\PublicApiException("file/no-file", "No file was uploaded or unknown error occurred."); } \service\files::verify_uploaded_files($files); |