Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'program/lib/Roundcube/rcube_db.php')
-rw-r--r--program/lib/Roundcube/rcube_db.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/program/lib/Roundcube/rcube_db.php b/program/lib/Roundcube/rcube_db.php
index af1eee923..cab70eeb9 100644
--- a/program/lib/Roundcube/rcube_db.php
+++ b/program/lib/Roundcube/rcube_db.php
@@ -80,11 +80,7 @@ class rcube_db
$driver = strtolower(substr($db_dsnw, 0, strpos($db_dsnw, ':')));
$driver_map = [
'sqlite2' => 'sqlite',
- 'sybase' => 'mssql',
- 'dblib' => 'mssql',
'mysqli' => 'mysql',
- 'oci' => 'oracle',
- 'oci8' => 'oracle',
];
$driver = $driver_map[$driver] ?? $driver;
@@ -1418,10 +1414,7 @@ class rcube_db
continue;
}
- if ($trimmed == 'GO') {
- $exec = $buff;
- }
- else if ($trimmed[strlen($trimmed)-1] == ';') {
+ if ($trimmed[strlen($trimmed)-1] == ';') {
$exec = $buff . substr(rtrim($line), 0, -1);
}