[eluser]n0xie[/eluser]
Are you sure you are using the latest version of CI?
Line 109 in /system/libraries/Controller.php is this:
Code:
function _ci_scaffolding()
{
if ($this->_ci_scaffolding === FALSE OR $this->_ci_scaff_table === FALSE)
{
show_404('Scaffolding unavailable');
}
$method = ( ! in_array($this->uri->segment(3), array('add', 'insert', 'edit', 'update', 'view', 'delete', 'do_delete'), TRUE)) ? 'view' : $this->uri->segment(3);
require_once(BASEPATH.'scaffolding/Scaffolding'.EXT);
$scaff = new Scaffolding($this->_ci_scaff_table);
$scaff->$method();
}
Since your file seems to be in the application folder it seems to me that it is something you made yourself. Could you show us the code?