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
Zvonimir
ISPConfig 3
Commits
1df8fddf
Commit
1df8fddf
authored
Mar 06, 2014
by
Till Brehm
Browse files
Fixed syntax error in ispconfig_update.php
parent
18148bda
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/scripts/ispconfig_update.php
View file @
1df8fddf
...
...
@@ -93,7 +93,7 @@ $method = simple_query('Select update method', array('stable', 'svn'), 'stable')
if
(
$method
==
'stable'
)
{
$new_version
=
@
file_get_contents
(
'http://www.ispconfig.org/downloads/ispconfig3_version.txt'
)
or
die
(
'Unable to retrieve version file.'
);
$new_version
=
trim
(
$new_version
);
if
(
version_compare
(
$new_version
,
ISPC_APP_VERSION
,
'>'
)
{
if
(
version_compare
(
$new_version
,
ISPC_APP_VERSION
,
'>'
)
)
{
passthru
(
'/usr/local/ispconfig/server/scripts/update_from_tgz.sh'
);
exit
;
}
else
{
...
...
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