Till Brehm
2016-05-22 c2560aca4af9c7713d47fd6c0b988f901fc41968
Merge branch 'patch-1' into 'stable-3.1'

Fix for Ubuntu 16.04 (Xenial)

Closes #3914

See merge request !342
1 files modified
6 ■■■■ changed files
install/lib/install.lib.php 6 ●●●● patch | view | raw | blame | history
install/lib/install.lib.php
@@ -82,7 +82,11 @@
        $relname = "(" . trim(trim($relname), "()") . ")";
        $distname = 'Ubuntu';
        $ver = reset($ver);
        $distid = 'debian40';
        if($ver == "16.04") {
            $distid = 'ubuntu1604';
        } else {
            $distid = 'debian40';
        }
        $distbaseid = 'debian';
        $distver = $ver . $lts . " " . $relname;
        swriteln("Operating System: " . $distver . "\n");