diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-05-12 16:52:24 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-05-12 16:52:24 +0200 |
commit | acbe0e4cd2c3b839a5f6f499eea059977976cdba (patch) | |
tree | c1cc75983def8b6980a7aea75b7bc998abcc605e /application/controllers/user.php | |
parent | 82f6b5feb8f698b94cab52bcadefa6130d7f47f7 (diff) |
fix missing object initialization and properly declare class variables
var is deprecated since ages and in strict mode we have to initialize
$this->var as a generic object before using it.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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()); |