Created
January 27, 2010 12:13
-
-
Save philsturgeon/287792 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); | |
class MY_Config extends CI_Config | |
{ | |
function __get($item) | |
{ | |
return parent::item($item); | |
} | |
function __set($item, $value) | |
{ | |
return parent::set_item($item, $value); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On line 1, is
BASEPATH
something you define manually in (for example) index.php?