summaryrefslogtreecommitdiffstats
path: root/application/models
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-07-13 21:37:39 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-07-13 21:37:39 +0200
commitf67a3cf212a774945a0d10143e93071e19dc40f4 (patch)
treeb430e3a6e8215cf541c2a3facf841602b980c3b8 /application/models
parent7f012ee652e0c62c6b73bfa3fc029b7749520b6c (diff)
muser: Improve invalid action key error message
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/models')
-rw-r--r--application/models/muser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/models/muser.php b/application/models/muser.php
index c30867e6a..fd45fc777 100644
--- a/application/models/muser.php
+++ b/application/models/muser.php
@@ -201,7 +201,7 @@ class Muser extends CI_Model {
->get()->row_array();
if (!isset($query["key"]) || $key != $query["key"]) {
- throw new \exceptions\UserInputException("user/get_action/invalid-action", "Invalid action key");
+ throw new \exceptions\UserInputException("user/get_action/invalid-action", "Invalid action key. Has the key been used already?");
}
return $query;