[eluser]Derek Allard[/eluser]
Sure Tony. In application/config/autoload.php you'll see tis
Code:
$autoload['libraries'] = array('database', 'site_sentry', 'session');
The important thing to note here is that Bamboo is loading a library named "site_sentry". You can find it in application/libraries. Any calls to $this->site_sentry are referring to it. In this case, look for a function named "login_routine()".
I should add that I didn't write site_sentry, it was one of the first auth-style scripts generated by the CI community, and I took it for my own uses several years ago. Thanks James Nicol for writing it!