[eluser]theprodigy[/eluser]
Quote:Ok, but when I put my own library (“captions.php”) into the app/libraries folder and then added its name to the autoload.php file, it wasn’t ever loaded. It only worked when I added my file to the system/libraries folder.
Thoughts on why this happened?
Is your class name the same as your file name?
Code:
//filename captions.php
class Captions {
// [code goes here]
}
And when you tried to access it, did you use:
Code:
$this->captions->function_name():