diff options
Diffstat (limited to 'apps/user_ldap/lib/helper.php')
-rw-r--r-- | apps/user_ldap/lib/helper.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/helper.php b/apps/user_ldap/lib/helper.php index 37caedc6251..b6d7bad8727 100644 --- a/apps/user_ldap/lib/helper.php +++ b/apps/user_ldap/lib/helper.php @@ -159,7 +159,8 @@ class Helper { return false; } - if(strpos(\OCP\Config::getSystemValue('dbtype'), 'sqlite') !== false) { + $dbtype = \OCP\Config::getSystemValue('dbtype'); + if(strpos($dbtype, 'sqlite') !== false || $dbtype === 'oci') { $query = \OCP\DB::prepare('DELETE FROM '.$table); } else { $query = \OCP\DB::prepare('TRUNCATE '.$table); |