Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Thomas Basler
ISPConfig 3
Commits
076722f4
Commit
076722f4
authored
Mar 15, 2021
by
Jesse Norell
Browse files
missing slash: #6106
parent
c40198b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/lib/installer_base.lib.php
View file @
076722f4
...
...
@@ -2772,7 +2772,7 @@ class installer_base {
if
(
@
is_link
(
$vhost_conf_enabled_dir
.
'/'
.
$use_symlink
))
{
unlink
(
$vhost_conf_enabled_dir
.
'/'
.
$use_symlink
);
}
if
(
!@
is_link
(
$vhost_conf_enabled_dir
.
''
.
$use_symlink
))
{
if
(
!@
is_link
(
$vhost_conf_enabled_dir
.
'
/
'
.
$use_symlink
))
{
symlink
(
$vhost_conf_dir
.
'/'
.
$use_name
,
$vhost_conf_enabled_dir
.
'/'
.
$use_symlink
);
}
}
...
...
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