Skip to content
Snippets Groups Projects
Commit e313d006 authored by Till Brehm's avatar Till Brehm
Browse files

Fixed: #4674 Permission on ftp_traffic table after update to 3.1.2

parent a4ee1fe8
No related branches found
No related tags found
No related merge requests found
...@@ -672,6 +672,14 @@ class installer_base { ...@@ -672,6 +672,14 @@ class installer_base {
if(!$this->dbmaster->query($query, $value['db'] . '.dns_soa', $value['user'], $host)) { if(!$this->dbmaster->query($query, $value['db'] . '.dns_soa', $value['user'], $host)) {
$this->warning('Unable to set rights of user in master database: '.$value['db']."\n Query: ".$query."\n Error: ".$this->dbmaster->errorMessage); $this->warning('Unable to set rights of user in master database: '.$value['db']."\n Query: ".$query."\n Error: ".$this->dbmaster->errorMessage);
} }
$query = "GRANT SELECT, INSERT, UPDATE ON ?? TO ?@?";
if ($verbose){
echo $query ."\n";
}
if(!$this->dbmaster->query($query, $value['db'] . '.ftp_traffic', $value['user'], $host)) {
$this->warning('Unable to set rights of user in master database: '.$value['db']."\n Query: ".$query."\n Error: ".$this->dbmaster->errorMessage);
}
} }
......
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