Skip to content

Commit e933a5b

Browse files
author
vogelor
committed
Fixed a error in configuring user rights
1 parent 7aa134d commit e933a5b

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
@@ -328,7 +328,7 @@ public function grant_master_database_rights() {
328328
$this->error('Unable to create database user in master database: '.$conf['mysql']['master_ispconfig_user'].' Error: '.$this->dbmaster->errorMessage);
329329
}
330330

331-
$query = "GRANT SELECT, UPDATE (`action_status`, `response`) ON ".$conf['mysql']['master_database'].".`sys_remoteaction` "
331+
$query = "GRANT SELECT, UPDATE (`action_state`, `response`) ON ".$conf['mysql']['master_database'].".`sys_remoteaction` "
332332
."TO '".$conf['mysql']['master_ispconfig_user']."'@'".$src_host."' "
333333
."IDENTIFIED BY '".$conf['mysql']['master_ispconfig_password']."';";
334334
if(!$this->dbmaster->query($query)) {

0 commit comments

Comments
 (0)