We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6abbf2e commit d1a6599Copy full SHA for d1a6599
server/scripts/ispconfig_update.php
@@ -91,7 +91,7 @@ function simple_query($query, $answers, $default)
91
$method = simple_query('Select update method', array('stable','svn'), 'stable');
92
93
if($method == 'stable') {
94
- $new_version = file_get_contents('http://www.ispconfig.org/downloads/ispconfig3_version.txt') or die('Unable to retrieve version file.');
+ $new_version = @file_get_contents('http://www.ispconfig.org/downloads/ispconfig3_version.txt') or die('Unable to retrieve version file.');
95
$new_version = trim($new_version);
96
if($new_version != ISPC_APP_VERSION) {
97
exec('/usr/local/ispconfig/server/scripts/update_from_tgz.sh');
0 commit comments