From f67a3cf212a774945a0d10143e93071e19dc40f4 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 13 Jul 2016 21:37:39 +0200 Subject: muser: Improve invalid action key error message Signed-off-by: Florian Pritz --- application/models/muser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'application/models') 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; -- cgit v1.2.3-24-g4f1b