Skip to content

Commit 5883ac2

Browse files
author
Till Brehm
committed
Merge branch 'stable-3.1' into 'stable-3.1'
wrong sql-call during install See merge request !637
2 parents b133766 + 6d6e3a1 commit 5883ac2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/lib/installer_base.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public function configure_database() {
235235
}
236236

237237
$unwanted_sql_plugins = array('validate_password');
238-
$sql_plugins = $inst->db->queryAllRecords("SELECT plugin_name FROM information_schema.plugins WHERE plugin_status='ACTIVE' AND plugin_name IN ?", $unwanted_sql_plugins);
238+
$sql_plugins = $this->db->queryAllRecords("SELECT plugin_name FROM information_schema.plugins WHERE plugin_status='ACTIVE' AND plugin_name IN ?", $unwanted_sql_plugins);
239239
if(is_array($sql_plugins) && !empty($sql_plugins)) {
240240
foreach ($sql_plugins as $plugin) echo "Login in to MySQL and disable $plugin[plugin_name] with:\n\n UNINSTALL PLUGIN $plugin[plugin_name];";
241241
die();

0 commit comments

Comments
 (0)