Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Hemio e. V.
edentata
Commits
b1868caf
Commit
b1868caf
authored
Dec 22, 2019
by
Sophie Herold
Browse files
Fix SQL bool parameter
parent
0ec5665d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/module/web/SiteCreate.php
View file @
b1868caf
...
...
@@ -134,7 +134,7 @@ class SiteCreate extends Window
$siteParams
=
[
'p_port'
=>
$port
,
'p_https'
=>
(
int
)
$httpsSwitch
->
getValueUser
(),
'p_https'
=>
$httpsSwitch
->
getValueUser
()
?
't'
:
'f'
,
'p_user'
=>
$user
,
'p_service_entity_name'
=>
$serviceName
,
]
+
$form
->
getVal
([
'domain'
]);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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