Fatal error: Call to undefined function validation_errors() in-Collection of common programming errors

Here is the code:

class CCI extends Controller {

 function CCI()
 {
  parent::Controller();
 }

 function index()
 {
   $this->load->helper('url');
  $this->load->view('Users/login');
 }

 function test()
 {
  echo "Testing Data";
 }
}

The page was loading fine until I moved the location of the “login” page inside of the “Users” folder

Originally posted 2013-11-09 22:57:03.