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
lolo888
ISPConfig 3
Commits
e2ef16a0
Commit
e2ef16a0
authored
May 23, 2008
by
tbrehm
Browse files
Fixed a bug in update.php
parent
83994b3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/update.php
View file @
e2ef16a0
...
...
@@ -129,7 +129,7 @@ if( !empty($conf["mysql"]["admin_password"]) ) {
}
//** Shall the services be reconfigured during update
$reconfigure_services_answer
=
$inst
->
simple_query
(
'Reconfigure Services?'
,
'yes
,
no'
,
'yes'
);
$reconfigure_services_answer
=
$inst
->
simple_query
(
'Reconfigure Services?'
,
array
(
'yes
'
,
'
no'
)
,
'yes'
);
if
(
$reconfigure_services_answer
==
'yes'
)
{
//** Configure postfix
...
...
@@ -177,7 +177,7 @@ swriteln('Updating ISPConfig');
$inst
->
install_ispconfig
();
//** Configure Crontab
$update_crontab_answer
=
$inst
->
simple_query
(
'Reconfigure Services?'
,
'yes
,
no'
,
'yes'
);
$update_crontab_answer
=
$inst
->
simple_query
(
'Reconfigure Services?'
,
array
(
'yes
'
,
'
no'
)
,
'yes'
);
if
(
$update_crontab_answer
==
'yes'
)
{
swriteln
(
'Updating Crontab'
);
$inst
->
install_crontab
();
...
...
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