From 0a0647df645c2b75e136c81ff3aa99dd7c2ca05a Mon Sep 17 00:00:00 2001
From: Till Brehm <tbrehm@ispconfig.org>
Date: Sun, 31 Jan 2016 06:24:23 -0500
Subject: [PATCH] Add code to recognize Ubuntu 15.10 in installer and monitor.
---
install/lib/install.lib.php | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/install/lib/install.lib.php b/install/lib/install.lib.php
index f17b982..08b0f84 100644
--- a/install/lib/install.lib.php
+++ b/install/lib/install.lib.php
@@ -86,6 +86,9 @@
$mainver = array_filter($mainver);
$mainver = current($mainver).'.'.next($mainver);
switch ($mainver){
+ case "15.10":
+ $relname = "(Wily Werewolf)";
+ break;
case "15.04":
$relname = "(Vivid Vervet)";
break;
--
Gitblit v1.9.1