kerkness / kohana-for-wordpress

Plugin for running the Kohana 3.0 framework inside of Wordpress
http://kerkness.ca
26 stars 6 forks source link

A couple crucial issues with the requests #7

Open zeelot opened 14 years ago

zeelot commented 14 years ago
  1. The bootstrap was loading modules before log and config classes were attached, this caused fatal errors in some of my modules that had init.php files. I've switched the order of these in the default bootstrap.
  2. You were assuming the Kohana request would always return a string. I've made sure the response is valid as long as it implements a __toString() method like View and Kostache both do.