aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 5c08d457b6..575dd11388 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -5573,6 +5573,15 @@ function phpbb_convert_30_dbms_to_31($dbms)
if (class_exists($dbms))
{
+ /*
+ $reflection = new \ReflectionClass($dbms);
+
+ if ($reflection->isSubclassOf('phpbb_db_driver'))
+ {
+ return $dbms;
+ }
+ */
+
return $dbms;
}