diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-07 20:17:46 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-07 20:17:46 +0100 |
commit | fdc63828a876e87742380a4ae077e43f514320b8 (patch) | |
tree | aad4289623f465387d71aa74501ae4d73dcc4db1 /system/core/Exceptions.php | |
parent | 7ac33d7a615f9b5e27fe92a0a91c4ebfb19faad3 (diff) |
Revert DIRECTORY_SEPARATOR changes
Diffstat (limited to 'system/core/Exceptions.php')
-rwxr-xr-x | system/core/Exceptions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php index 9b672ac54..bf9901252 100755 --- a/system/core/Exceptions.php +++ b/system/core/Exceptions.php @@ -146,7 +146,7 @@ class CI_Exceptions { 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 @@ class CI_Exceptions { 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; |