summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-05-23 19:18:53 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-05-23 19:18:53 +0200
commit3046c9fdc764fd68b855b09e1600e22ecc62a47b (patch)
tree234f61ec461b63ae0fc8a80f5abb13fdcdd1e079 /system
parent37294771ef8cdb0c2d4834783ad79a6bdbc96d77 (diff)
parent2fceb85c49142cd512c10080a3cd9ad067f0414c (diff)
Merge pull request #1357 from timw4mail/errors
Move errors to views folder
Diffstat (limited to 'system')
-rwxr-xr-xsystem/core/Exceptions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php
index 965a717ad..8c32085fe 100755
--- a/system/core/Exceptions.php
+++ b/system/core/Exceptions.php
@@ -143,7 +143,7 @@ class CI_Exceptions {
ob_end_flush();
}
ob_start();
- include(APPPATH.'errors/'.$template.'.php');
+ include(APPPATH.'views/errors/'.$template.'.php');
$buffer = ob_get_contents();
ob_end_clean();
return $buffer;
@@ -177,7 +177,7 @@ class CI_Exceptions {
ob_end_flush();
}
ob_start();
- include(APPPATH.'errors/error_php.php');
+ include(APPPATH.'views/errors/error_php.php');
$buffer = ob_get_contents();
ob_end_clean();
echo $buffer;