diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-23 08:25:58 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-23 08:25:58 -0700 |
commit | 3643706a2e9a0cef3c75ec82a6609726ab3421c7 (patch) | |
tree | 9fff5880af11a62797a73bc3ec2dc96e0cbf82ff /system | |
parent | 94cd07805dfad6131f0bcb33bf437a31d1f4d336 (diff) |
Apply local fix for Kohana ticket 2276.
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; |