From 0df695555c42fd4e35e86537bf12dd1e147dc465 Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Tue, 13 Aug 2013 09:20:48 +0300 Subject: [PATCH] php 5.2 friendly autoloader --- ipf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipf.php b/ipf.php index 0505f2e..5b378cf 100644 --- a/ipf.php +++ b/ipf.php @@ -173,7 +173,7 @@ class IPF_ClassLoader $this->classMap = require $vendor_path . '/composer/autoload_classmap.php'; - spl_autoload_register(array($this, 'load'), true, true); + spl_autoload_register(array($this, 'load'), true); } public function load($class) -- 2.49.0