diff options
Diffstat (limited to 'application/controllers/user.php')
-rw-r--r-- | application/controllers/user.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/application/controllers/user.php b/application/controllers/user.php index 204612b2d..af908a63d 100644 --- a/application/controllers/user.php +++ b/application/controllers/user.php @@ -2,9 +2,15 @@ class User extends CI_Controller { + public $data = array(); + public $var; + function __construct() { parent::__construct(); + + $this->var = new StdClass(); + $this->load->library('migration'); if ( ! $this->migration->current()) { show_error($this->migration->error_string()); |