Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
6d2655f5
Commit
6d2655f5
authored
Oct 02, 2016
by
Pascal Dreissen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes wrong query errors (fixes #4231, #4240)
parent
568430f2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
install/lib/installer_base.lib.php
install/lib/installer_base.lib.php
+1
-1
No files found.
install/lib/installer_base.lib.php
View file @
6d2655f5
...
...
@@ -585,7 +585,7 @@ class installer_base {
$this
->
warning
(
'Unable to set rights of user in master database: '
.
$value
[
'db'
]
.
"
\n
Query: "
.
$query
.
"
\n
Error: "
.
$this
->
dbmaster
->
errorMessage
);
}
$query
=
"GRANT SELECT, UPDATE (`ssl_request`, `ssl_cert`, `ssl_action`, `ssl_key`) ON ?? TO ?@?"
;
$query
=
"GRANT SELECT, UPDATE (
`ssl`, `ssl_letsencrypt`,
`ssl_request`, `ssl_cert`, `ssl_action`, `ssl_key`) ON ?? TO ?@?"
;
if
(
$verbose
){
echo
$query
.
"
\n
"
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment