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:
parent
0cbc1df48f
commit
89dabbf7f5
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ function __autoload($class)
|
||||||
|
|
||||||
if ($class == 'AYAH')
|
if ($class == 'AYAH')
|
||||||
{
|
{
|
||||||
$loaded = require_once PICKLES_VENDOR_PATH . '/ayah/' . $filename;
|
$loaded = require_once PICKLES_VENDOR_PATH . 'ayah/' . strtolower($filename);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue