diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-11-09 20:46:13 +0100 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-11-09 20:46:13 +0100 |
commit | 63277b81edde11b77ff94cbf1c3e5db16c97c4bf (patch) | |
tree | e03d08dcba5de6a97576bbdd6565891dc1d98256 /application/controllers | |
parent | 6b6c274e00fe2357004c0a4e38e6bdb0b2e0ddb4 (diff) |
Fix #62 Adding CI_ prefix to Controller.
Diffstat (limited to 'application/controllers')
-rw-r--r-- | application/controllers/welcome.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/controllers/welcome.php b/application/controllers/welcome.php index 2e4cff8ed..3c2f7e1cf 100644 --- a/application/controllers/welcome.php +++ b/application/controllers/welcome.php @@ -1,10 +1,10 @@ <?php -class Welcome extends Controller { +class Welcome extends CI_Controller { function Welcome() { - parent::Controller(); + parent::CI_Controller(); } function index() |