Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1,573
Issues
1,573
List
Boards
Labels
Milestones
Merge Requests
30
Merge Requests
30
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISPConfig
ISPConfig 3
Commits
3dcba383
Commit
3dcba383
authored
Nov 14, 2018
by
Marius Burkard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- removed hook call from inside function
parent
b5984360
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
install/lib/installer_base.lib.php
install/lib/installer_base.lib.php
+0
-3
No files found.
install/lib/installer_base.lib.php
View file @
3dcba383
...
...
@@ -161,7 +161,6 @@ class installer_base {
public
function
find_installed_apps
()
{
global
$conf
;
$this
->
call_hook
(
'find_installed_apps'
,
false
);
if
(
is_installed
(
'mysql'
)
||
is_installed
(
'mysqld'
))
$conf
[
'mysql'
][
'installed'
]
=
true
;
if
(
is_installed
(
'postfix'
))
$conf
[
'postfix'
][
'installed'
]
=
true
;
if
(
is_installed
(
'postgrey'
))
$conf
[
'postgrey'
][
'installed'
]
=
true
;
...
...
@@ -191,8 +190,6 @@ class installer_base {
if
(
is_installed
(
'cron'
)
||
is_installed
(
'anacron'
))
$conf
[
'cron'
][
'installed'
]
=
true
;
if
((
$conf
[
'apache'
][
'installed'
]
&&
is_file
(
$conf
[
'apache'
][
"vhost_conf_enabled_dir"
]
.
"/000-ispconfig.vhost"
))
||
(
$conf
[
'nginx'
][
'installed'
]
&&
is_file
(
$conf
[
'nginx'
][
"vhost_conf_enabled_dir"
]
.
"/000-ispconfig.vhost"
)))
$this
->
ispconfig_interface_installed
=
true
;
$this
->
call_hook
(
'find_installed_apps'
,
true
);
}
public
function
force_configure_app
(
$service
,
$enable_force
=
true
)
{
...
...
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