Fix #10 , extending the CodeIgniter controller with MY_Controller will lead to a fatal PHP error.
diff --git a/system/application/core/index.html b/system/application/core/index.html
new file mode 100644
index 0000000..c942a79
--- /dev/null
+++ b/system/application/core/index.html
@@ -0,0 +1,10 @@
+<html>
+<head>
+	<title>403 Forbidden</title>
+</head>
+<body>
+
+<p>Directory access is forbidden.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index 488f9f3..295917c 100644
--- a/system/core/CodeIgniter.php
+++ b/system/core/CodeIgniter.php
@@ -224,6 +224,11 @@
 	// Load the base controller class
 	require BASEPATH.'core/Controller'.EXT;
 	
+	if (file_exists(APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller'.EXT))
+	{
+		require APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller'.EXT;
+	}
+	
 	// Load the local application controller
 	// Note: The Router class automatically validates the controller path using the router->_validate_request().  
 	// If this include fails it means that the default controller in the Routes.php file is not resolving to something valid.