Skip to content

Commit 4a0a74c

Browse files
author
Marius Burkard
committed
Merge branch 'stable-3.1' of git.ispconfig.org:ispconfig/ispconfig3 into stable-3.1
2 parents 13a5474 + cc8a3e8 commit 4a0a74c

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

server/conf/vhost.conf.master

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@
215215
<tmpl_if name='cgi' op='==' value='y'>
216216
# cgi enabled
217217
<Directory {tmpl_var name='document_root'}/cgi-bin>
218+
AllowOverride <tmpl_var name='allow_override'>
218219
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
219220
Require all granted
220221
<tmpl_else>

server/cron.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676

7777

7878
// Load required base-classes
79-
$app->uses('modules,ini_parser,file,services,getconf,system,cron,functions');
79+
$app->uses('modules,ini_parser,file,services,getconf,system,cron,functions,plugins');
8080
$app->load('libdatetime,cronjob');
8181

8282
// read all cron jobs

server/lib/classes/monitor_tools.inc.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,21 +217,18 @@ function get_distname() {
217217
$distconfid = 'debian100';
218218
$distid = 'debian60';
219219
$distbaseid = 'debian';
220-
swriteln("Operating System: Debian 10.0 (Buster) or compatible\n");
221220
} elseif(strstr(trim(file_get_contents('/etc/debian_version')), '/sid')) {
222221
$distname = 'Debian';
223222
$distver = 'Testing';
224223
$distid = 'debian60';
225224
$distconfid = 'debiantesting';
226225
$distbaseid = 'debian';
227-
swriteln("Operating System: Debian Testing\n");
228226
} else {
229227
$distname = 'Debian';
230228
$distver = 'Unknown';
231229
$distid = 'debian60';
232230
$distconfid = 'debian100';
233231
$distbaseid = 'debian';
234-
swriteln("Operating System: Debian or compatible, unknown version.\n");
235232
}
236233
}
237234

0 commit comments

Comments
 (0)