summaryrefslogtreecommitdiffstats
path: root/system/core/Exceptions.php
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2014-04-14 14:33:55 +0200
committervlakoff <vlakoff@gmail.com>2014-04-14 14:33:55 +0200
commit511a6b8eb67e34820c1b9446cfc8891b52df90c7 (patch)
treea688e58e6cc1948522b94d13406d39b2956ca604 /system/core/Exceptions.php
parent05079dd53e6c52925ddbf25bdf948775ee383ef8 (diff)
Rename config item "error_templates_path" to "error_views_path"
Diffstat (limited to 'system/core/Exceptions.php')
-rw-r--r--system/core/Exceptions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php
index 398459d54..0c247f916 100644
--- a/system/core/Exceptions.php
+++ b/system/core/Exceptions.php
@@ -83,8 +83,8 @@ class CI_Exceptions {
$config =& get_config();
- $this->_templates_path = (isset($config['error_templates_path']) && $config['error_templates_path'] !== '')
- ? $config['error_templates_path']
+ $this->_templates_path = (isset($config['error_views_path']) && $config['error_views_path'] !== '')
+ ? $config['error_views_path']
: VIEWPATH.'errors'.DIRECTORY_SEPARATOR;
}