Skip to content

Commit 0427205

Browse files
author
Marius Burkard
committed
- merge conflicts resolved
1 parent e32c871 commit 0427205

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

install/lib/installer_base.lib.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1988,16 +1988,14 @@ public function configure_apache() {
19881988
$vhost_conf_enabled_dir = $conf['apache']['vhost_conf_enabled_dir'];
19891989

19901990
$tpl = new tpl('apache_ispconfig.conf.master');
1991-
$tpl->setVar('apache_version',getapacheversion());
1991+
$tpl->setVar('apache_version',getapacheversion(true));
19921992

19931993
if($this->is_update == true) {
19941994
$tpl->setVar('logging',get_logging_state());
19951995
} else {
19961996
$tpl->setVar('logging','yes');
19971997
}
19981998

1999-
$tpl->setVar('apache_version',getapacheversion(true));
2000-
20011999
$records = $this->db->queryAllRecords("SELECT * FROM ?? WHERE server_id = ? AND virtualhost = 'y'", $conf['mysql']['master_database'] . '.server_ip', $conf['server_id']);
20022000
$ip_addresses = array();
20032001

interface/lib/classes/simplepie.inc.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13338,8 +13338,7 @@ function date_w3cdtf($date)
1333813338
}
1333913339

1334013340
// Convert the number of seconds to an integer, taking decimals into account
13341-
$second = round($match[6] + (float)$match[7] / pow(10, (int)strlen($match[7])));
13342-
$second = @round($match[6] + $match[7] / @pow(10, strlen($match[7])));
13341+
$second = @round($match[6] + (float)$match[7] / @pow(10, (int)strlen($match[7])));
1334313342

1334413343
return gmmktime($match[4], $match[5], $second, $match[2], $match[3], $match[1]) - $timezone;
1334513344
}

interface/web/admin/lib/lang/nl_server_config.lng

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,6 @@ $wb['backup_tmp_txt'] = 'Backup tijdelijke map voor zip';
293293
$wb['tmpdir_path_error_empty'] = 'tmp-dir map is leeg.';
294294
$wb['tmpdir_path_error_regex'] = 'Ongeldige tmp-dir map.';
295295
$wb['nginx_enable_pagespeed_txt'] = 'Makes Pagespeed available';
296-
$wb['backup_tmp_txt'] = 'Backup tmp directory for zip';
297-
$wb['tmpdir_path_error_empty'] = 'tmp-dir Path is empty.';
298-
$wb['tmpdir_path_error_regex'] = 'Invalid tmp-dir path.';
299296
$wb['logging_txt'] = 'Store website access and error logs';
300297
$wb['logging_desc_txt'] = 'Use Tools > Resync to apply changes to existing sites. For Apache, access and error log can be anonymized. For nginx, only the access log is anonymized, the error log will contain IP addresses.';
301298
$wb['log_retention_txt'] = 'Log retention (days)';

0 commit comments

Comments
 (0)