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";