diff options
author | vlakoff <vlakoff@gmail.com> | 2014-04-14 14:33:55 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2014-04-14 14:33:55 +0200 |
commit | 511a6b8eb67e34820c1b9446cfc8891b52df90c7 (patch) | |
tree | a688e58e6cc1948522b94d13406d39b2956ca604 /system | |
parent | 05079dd53e6c52925ddbf25bdf948775ee383ef8 (diff) |
Rename config item "error_templates_path" to "error_views_path"
Diffstat (limited to 'system')
-rw-r--r-- | 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 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; } |