diff options
author | shadlaws <shad@shadlaws.com> | 2013-02-18 19:12:45 +0100 |
---|---|---|
committer | shadlaws <shad@shadlaws.com> | 2013-02-18 19:12:45 +0100 |
commit | ab920ae360d5cca446784675bb0401349c50d9fb (patch) | |
tree | c194587bf930831397ab602e116dfea94c6c9d23 /application | |
parent | afa61f9d0d551bc2a0c4fa903eb3f55742720c8d (diff) |
#1749, 1754, 1901 - Eliminate incompatibility with Zend Guard Loader.
- added MY_Kohana to provide wrapper for auto_load(), which loads dummy class when none found.
- revised Bootstrap to load MY_Kohana.
This is based on the patch described here: http://blog.teatime.com.tw/1/post/403
Diffstat (limited to 'application')
-rw-r--r-- | application/Bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/Bootstrap.php b/application/Bootstrap.php index 93353b47..a79ccba4 100644 --- a/application/Bootstrap.php +++ b/application/Bootstrap.php @@ -35,7 +35,7 @@ require SYSPATH.'core/Event'.EXT; final class Event extends Event_Core {} require SYSPATH.'core/Kohana'.EXT; -final class Kohana extends Kohana_Core {} +require MODPATH.'gallery/libraries/MY_Kohana'.EXT; require SYSPATH.'core/Kohana_Exception'.EXT; require MODPATH.'gallery/libraries/MY_Kohana_Exception'.EXT; |