Fixed case sensitivity issue.

When developing on OS X the case sensitivity didn't matter much but on Linux it broke the include.
This commit is contained in:
Josh Sherman 2013-12-24 17:36:10 -05:00
parent 0cbc1df48f
commit 89dabbf7f5

View file

@ -140,7 +140,7 @@ function __autoload($class)
if ($class == 'AYAH')
{
$loaded = require_once PICKLES_VENDOR_PATH . '/ayah/' . $filename;
$loaded = require_once PICKLES_VENDOR_PATH . 'ayah/' . strtolower($filename);
}
else
{