Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
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
insert the output of `php -v` here
```
## propsed fix
## prop
o
sed fix
optional, of course.
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
## screenshots
optional, of course.
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() {
$ver
=
explode
(
" "
,
$ver
,
2
);
$ver
=
reset
(
$ver
);
$mainver
=
$ver
;
$mainver
=
explode
(
'.'
,
$ver
);
$mainver
=
array_filter
(
$mainver
);
$mainver
=
current
(
$mainver
)
.
'.'
.
next
(
$mainver
);
}
switch
(
$mainver
){
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