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

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-02-06 05:31:03 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-02-06 23:47:57 +0300
commit010c6aab57b318cf2cbd56732a321f7831bc6c8f (patch)
tree86a9df7e17d962dac01f8fcb842f1922eb0155d9 /tbl_replace.php
parent76b0f64f21b1b0f17d7edd32bac01e8e56bf51b3 (diff)
Use DI for DatabaseInterface dependency
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'tbl_replace.php')
-rw-r--r--tbl_replace.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_replace.php b/tbl_replace.php
index 7108ba5919..6df978fac3 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -47,7 +47,7 @@ $scripts->addFile('sql.js');
$scripts->addFile('indexes.js');
$scripts->addFile('gis_data_editor.js');
-$insertEdit = new InsertEdit();
+$insertEdit = new InsertEdit($GLOBALS['dbi']);
// check whether insert row mode, if so include tbl_change.php
$insertEdit->isInsertRow();