From 6f514617930a1628b5c027cd5063c0f69f27b89d Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Tue, 27 Sep 2011 20:25:21 +0100 Subject: [PATCH] If locator is stored against user profile used instead of the default in the config --- application/models/user_model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/models/user_model.php b/application/models/user_model.php index 29d940f3..beb4a6a8 100644 --- a/application/models/user_model.php +++ b/application/models/user_model.php @@ -202,6 +202,7 @@ class User_Model extends CI_Model { 'user_name' => $u->row()->user_name, 'user_type' => $u->row()->user_type, 'user_callsign' => $u->row()->user_callsign, + 'user_locator' => $u->row()->user_locator, 'user_hash' => $this->_hash($u->row()->user_id."-".$u->row()->user_type) );