From 93ddd7baeccf9cdf703cf43026495b823cd6aefd Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Mon, 21 May 2012 18:00:18 -0400 Subject: [PATCH] Fix autoloading issue --- autoload.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/autoload.php b/autoload.php index 5a97afc..6099aa4 100644 --- a/autoload.php +++ b/autoload.php @@ -50,6 +50,13 @@ if ( ! function_exists('do_include')) function query_autoload($class) { $class = strtolower($class); + + // Load Firebird separately + if ($class === 'firebird') + { + return; + } + $class_path = QBASE_PATH . "classes/{$class}.php"; $driver_path = QDRIVER_PATH . "{$class}";