diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-07-13 21:37:39 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-07-13 21:37:39 +0200 |
commit | f67a3cf212a774945a0d10143e93071e19dc40f4 (patch) | |
tree | b430e3a6e8215cf541c2a3facf841602b980c3b8 | |
parent | 7f012ee652e0c62c6b73bfa3fc029b7749520b6c (diff) |
muser: Improve invalid action key error message
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | application/models/muser.php | 2 |
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; |