Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Game Over!
ISPConfig 3
Commits
3fb53509
Commit
3fb53509
authored
Aug 26, 2017
by
Marius Burkard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- fixed issue bug template
- added version cropping to installer
parent
bd9fb579
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
.gitlab/issue_templates/Bug.md
.gitlab/issue_templates/Bug.md
+6
-1
install/lib/install.lib.php
install/lib/install.lib.php
+3
-0
No files found.
.gitlab/issue_templates/Bug.md
View file @
3fb53509
...
@@ -18,7 +18,7 @@ insert the output of `nginx -v` or `apachectl -v` here
...
@@ -18,7 +18,7 @@ insert the output of `nginx -v` or `apachectl -v` here
insert the output of `php -v` here
insert the output of `php -v` here
```
```
## propsed fix
## prop
o
sed fix
optional, of course.
optional, of course.
if you want to post code snippets, please use
if you want to post code snippets, please use
```
```
...
@@ -34,3 +34,8 @@ if you know of a forum post on howtoforge.com that deals with this topic, just a
...
@@ -34,3 +34,8 @@ if you know of a forum post on howtoforge.com that deals with this topic, just a
## screenshots
## screenshots
optional, of course.
optional, of course.
Add screenshots of the problem by clicking "Attach a file" on the bottom right.
Add screenshots of the problem by clicking "Attach a file" on the bottom right.
## log entries
```
apache / nginx error.log lines (if related)
``
`
\ No newline at end of file
install/lib/install.lib.php
View file @
3fb53509
...
@@ -90,6 +90,9 @@ function get_distname() {
...
@@ -90,6 +90,9 @@ function get_distname() {
$ver
=
explode
(
" "
,
$ver
,
2
);
$ver
=
explode
(
" "
,
$ver
,
2
);
$ver
=
reset
(
$ver
);
$ver
=
reset
(
$ver
);
$mainver
=
$ver
;
$mainver
=
$ver
;
$mainver
=
explode
(
'.'
,
$ver
);
$mainver
=
array_filter
(
$mainver
);
$mainver
=
current
(
$mainver
)
.
'.'
.
next
(
$mainver
);
}
}
switch
(
$mainver
){
switch
(
$mainver
){
case
"17.04"
:
case
"17.04"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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