Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Jozef Sroka
ISPConfig 3
Commits
8c8e9bec
Commit
8c8e9bec
authored
Oct 19, 2016
by
Till Brehm
Browse files
Fixed #4250 Enabling firewall does not link plugin.
parent
31d46a24
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/firewall_plugin.inc.php
View file @
8c8e9bec
...
...
@@ -38,7 +38,7 @@ class firewall_plugin {
public
function
onInstall
()
{
global
$conf
;
if
(
$conf
[
'bastille'
][
'installed'
]
==
true
&&
$conf
[
'services'
][
'firewall'
]
==
true
)
{
if
(
(
$conf
[
'bastille'
][
'installed'
]
==
true
||
$conf
[
'ufw'
][
'installed'
]
==
true
||
$conf
[
'firewall'
][
'installed'
]
==
true
)
&&
$conf
[
'services'
][
'firewall'
]
==
true
)
{
return
true
;
}
else
{
return
false
;
...
...
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