include() vs include_once() allows for multiple views with the same name
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php
index 50bd413..31e7d66 100644
--- a/system/libraries/Loader.php
+++ b/system/libraries/Loader.php
@@ -705,7 +705,7 @@
 		}

 		else

 		{

-			include_once($_ci_path);

+			include($_ci_path); // include() vs include_once() allows for multiple views with the same name

 		}

 		

 		log_message('debug', 'File loaded: '.$_ci_path);