Skip to content

Commit e857cf2

Browse files
author
Marius Burkard
committed
Merge branch 'stable-3.1'
2 parents fc7389b + 3fb5350 commit e857cf2

File tree

10 files changed

+17
-9
lines changed

10 files changed

+17
-9
lines changed

.gitlab/issue_templates/Bug.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ insert the output of `nginx -v` or `apachectl -v` here
1818
insert the output of `php -v` here
1919
```
2020

21-
## propsed fix
21+
## proposed fix
2222
optional, of course.
2323
if you want to post code snippets, please use
2424
```
@@ -34,3 +34,8 @@ if you know of a forum post on howtoforge.com that deals with this topic, just a
3434
## screenshots
3535
optional, of course.
3636
Add screenshots of the problem by clicking "Attach a file" on the bottom right.
37+
38+
## log entries
39+
```
40+
apache / nginx error.log lines (if related)
41+
```

install/lib/install.lib.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ function get_distname() {
9292
$ver = explode(" ", $ver, 2);
9393
$ver = reset($ver);
9494
$mainver = $ver;
95+
$mainver = explode('.', $ver);
96+
$mainver = array_filter($mainver);
97+
$mainver = current($mainver).'.'.next($mainver);
9598
}
9699
switch ($mainver){
97100
case "17.04":

interface/web/admin/list/server_ip.list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php
22
/*
33
Datatypes:
44
- INTEGER

interface/web/admin/list/server_ip_map.list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php
22

33
$liste['name'] = 'server_ip_map';
44
$liste['table'] = 'server_ip_map';

interface/web/admin/list/server_php.list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php
22
/*
33
Datatypes:
44
- INTEGER

interface/web/js/jquery.ispconfigsearch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
Copyright (c) 2012, ISPConfig UG (haftungsbeschränkt)
33
All rights reserved.
44
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From: ISPConfig <postmaster@localhost.localdomain>
1+
From: ISPConfig <postmaster@localhost.localdomain>
22
Subject: Ihr Mailaccount ist aktiv.
33

44
Ihr Mailaccount ist jetzt aktiv. Viel Vergnügen.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From: ISPConfig <postmaster@localhost.localdomain>
1+
From: ISPConfig <postmaster@localhost.localdomain>
22
Subject: Welcome to your new email account.
33

44
Welcome to your new email account. Your webmaster.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From: ISPConfig <postmaster@localhost.localdomain>
1+
From: ISPConfig <postmaster@localhost.localdomain>
22
Subject: Bienvenido a su nueva cuenta de correo
33

44
Bienvenido a su nueva cuenta de correo. Su administrador.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From: ISPConfig <postmaster@localhost.localdomain>
1+
From: ISPConfig <postmaster@localhost.localdomain>
22
Subject: Dobrodošli u vaš novi email račun.
33

44
Dobrodošli u vaš novi email račun. Vaš webmajstor.

0 commit comments

Comments
 (0)