diff options
Diffstat (limited to 'application/models/muser.php')
-rw-r--r-- | application/models/muser.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/application/models/muser.php b/application/models/muser.php index ee086994d..c277118f2 100644 --- a/application/models/muser.php +++ b/application/models/muser.php @@ -144,6 +144,22 @@ class Muser extends CI_Model { } } + function get_action($action, $key) + { + $query = $this->db->query(" + SELECT * + FROM actions + WHERE `key` = ? + AND `action` = ? + ", array($key, $action))->row_array(); + + if (!isset($query["key"]) || $key != $query["key"]) { + show_error("Invalid action key"); + } + + return $query; + } + function hash_password($password) { |