diff --git a/system/libraries/Controller.php b/system/libraries/Controller.php
index c02074f..6a3ea99 100644
--- a/system/libraries/Controller.php
+++ b/system/libraries/Controller.php
@@ -430,6 +430,7 @@
 	 * @access	private
 	 * @param	mixed	database connection values
 	 * @param	bool	whether to return the object for multiple connections
+	 * @param	bool	whether to load the active record class
 	 * @return	void
 	 */
 	function _ci_init_database($params = '', $return = FALSE, $active_record = FALSE)
@@ -439,7 +440,7 @@
 			return;
 		}
 	
-		// Load the DB config file if needed
+		// Load the DB config file if needed.  We'll test for a DSN string
 		if (is_string($params) AND strpos($params, '://') === FALSE)
 		{
 			include(APPPATH.'config/database'.EXT);