Skip to content
Snippets Groups Projects
Commit badfbefd authored by Dominik's avatar Dominik
Browse files

corrected sql query

parent 3bb9ef8a
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ class installer extends installer_base ...@@ -81,7 +81,7 @@ class installer extends installer_base
} }
//* These postconf commands will be executed on installation and update //* These postconf commands will be executed on installation and update
$server_ini_rec = $this->db->queryOneRecord("SELECT config FROM ?.`server` WHERE server_id = ?", $conf["mysql"]["database"], $conf['server_id']); $server_ini_rec = $this->db->queryOneRecord("SELECT config FROM ?? WHERE server_id = ?", $conf["mysql"]["database"].'.server', $conf['server_id']);
$server_ini_array = ini_to_array(stripslashes($server_ini_rec['config'])); $server_ini_array = ini_to_array(stripslashes($server_ini_rec['config']));
unset($server_ini_rec); unset($server_ini_rec);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment