diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php
index 367d5ea..88659a7 100644
--- a/system/codeigniter/CodeIgniter.php
+++ b/system/codeigniter/CodeIgniter.php
@@ -132,7 +132,7 @@
 // Load the local application controller
 // Note: The Router class automatically validates the controller path.  If this include fails it 
 // means that the default controller in the Routes.php file is not resolving to something valid.
-if ( ! @include(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().EXT))
+if ( ! include(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().EXT))
 {
 	show_error('Unable to load your default controller.  Please make sure the controller specified in your Routes.php file is valid.');
 }
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php
index e32abfb..90a7763 100644
--- a/system/helpers/html_helper.php
+++ b/system/helpers/html_helper.php
@@ -178,6 +178,27 @@
 	return str_repeat(" ", $num);
 }
 
+// ------------------------------------------------------------------------
+
+/**
+ * Generates meta tags from an array of key/values
+ *
+ * @access	public
+ * @param	array
+ * @return	string
+ */	
+function meta($meta = array(), $newline = "\n")
+{
+	$str = '';
+	foreach ($meta as $key => $val)
+	{
+		$str .= '<meta http-equiv="'.$key.'" content="'.$val.'" />'.$newline;
+	}
+
+	return $str;
+}
+
+
 
 
 ?>
\ No newline at end of file
diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php
index 9010a06..3ca5974 100644
--- a/system/helpers/url_helper.php
+++ b/system/helpers/url_helper.php
@@ -442,9 +442,9 @@
 {
 	switch($method)
 	{
-		case 'refresh' : header("Refresh:0;url=".site_url($uri));
+		case 'refresh'	: header("Refresh:0;url=".site_url($uri));
 			break;
-		default		: header("location:".site_url($uri));
+		default			: header("location:".site_url($uri));
 			break;
 	}
 	exit;
diff --git a/system/scaffolding/views/header.php b/system/scaffolding/views/header.php
index 7ab60fd..50f234a 100644
--- a/system/scaffolding/views/header.php
+++ b/system/scaffolding/views/header.php
@@ -8,8 +8,6 @@
 <?php $this->file(BASEPATH.'scaffolding/views/stylesheet.css'); ?>
 </style>
 
-<script src="../../nav.js" type="text/javascript"></script>
-
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <meta http-equiv='expires' content='-1' />
 <meta http-equiv= 'pragma' content='no-cache' />