diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/core/Kohana.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/system/core/Kohana.php b/system/core/Kohana.php index c934b12b..8027975d 100644 --- a/system/core/Kohana.php +++ b/system/core/Kohana.php @@ -325,6 +325,14 @@ final class Kohana { // Add SYSPATH as the last path self::$include_paths[] = SYSPATH; + + // Local fix for Kohana Ticket:2276 + self::$internal_cache['find_file_paths'] = array(); + if ( ! isset(self::$write_cache['find_file_paths'])) + { + // Write cache at shutdown + self::$write_cache['find_file_paths'] = TRUE; + } } return self::$include_paths; |