From 8752540f31c3807664f7b7525a016b02d05c6e55 Mon Sep 17 00:00:00 2001 From: Joshua Sherman Date: Fri, 17 Jan 2014 10:50:59 -0500 Subject: [PATCH] Fixed the case sensitivity issue on this branch. Just a bug fix, happened months ago but I deleted the branch. --- pickles.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pickles.php b/pickles.php index f3f03fc..8b6db71 100644 --- a/pickles.php +++ b/pickles.php @@ -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 {