From ba768d36cc4dbc516d778f7be225d38e99f235a8 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Mon, 21 May 2012 17:57:16 -0400 Subject: [PATCH] Fix minor autoloading issue --- OpenSQLManager.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/OpenSQLManager.php b/OpenSQLManager.php index ff04374..06a1d77 100644 --- a/OpenSQLManager.php +++ b/OpenSQLManager.php @@ -121,6 +121,12 @@ if ( ! function_exists('do_include')) */ function osm_autoload($class) { + // Use the ibase_ functions instead of PDO::Firebird + if (strtolower($class) === 'firebird') + { + return; + } + $class = strtolower($class); $widget_path = BASE_DIR . "/widgets/{$class}.php"; $window_path = BASE_DIR . "/windows/{$class}.php";