From 92ea1687555ea2fb026ad20ba51f014575064e25 Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Wed, 21 Oct 2015 21:04:28 +0200 Subject: [PATCH] Updated to latest Ubuntu version. --- apt-urlcheck.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apt-urlcheck.php b/apt-urlcheck.php index 23c6820..225b43c 100755 --- a/apt-urlcheck.php +++ b/apt-urlcheck.php @@ -5,7 +5,8 @@ class APTChecker { private $whitelist = array(); private $aptlists = array(); - private $codenames = array( 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid', 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', 'trusty', 'utopic', 'debian', 'squeeze', 'stable', 'unstable', 'beta' ); + private $codenames_old = array( 'gutsy', 'hardy', 'intrepid' ); + private $codenames = array( 'jaunty', 'karmic', 'lucid', 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', 'trusty', 'utopic', 'vivid', 'wily', 'debian', 'squeeze', 'stable', 'unstable', 'beta' ); private $codename; function __construct()