Revert DIRECTORY_SEPARATOR changes
diff --git a/system/core/Controller.php b/system/core/Controller.php
index 5ae0b09..0dc1317 100644
--- a/system/core/Controller.php
+++ b/system/core/Controller.php
@@ -57,7 +57,7 @@
$this->load =& load_class('Loader', 'core');
$this->load->initialize();
- log_message('debug', "Controller Class Initialized");
+ log_message('debug', 'Controller Class Initialized');
}
public static function &get_instance()
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php
index 9b672ac..bf99012 100755
--- a/system/core/Exceptions.php
+++ b/system/core/Exceptions.php
@@ -146,7 +146,7 @@
ob_end_flush();
}
ob_start();
- include(APPPATH.'errors'.DIRECTORY_SEPARATOR.$template.'.php');
+ include(APPPATH.'errors/'.$template.'.php');
$buffer = ob_get_contents();
ob_end_clean();
return $buffer;
@@ -180,7 +180,7 @@
ob_end_flush();
}
ob_start();
- include(APPPATH.'errors'.DIRECTORY_SEPARATOR.'error_php.php');
+ include(APPPATH.'errors/'.'error_php.php');
$buffer = ob_get_contents();
ob_end_clean();
echo $buffer;