Remove outdated Flash Player ;)

This commit is contained in:
Steffen Lange 2021-01-07 16:05:21 +01:00
parent a549327e25
commit cfc43cfd3d

View file

@ -1,15 +0,0 @@
<?php
class AdobeFlashPlayer extends PatchBase {
function __construct() {
parent::__construct('Adobe', 'Flash Player', 'https://get.adobe.com/flashplayer/');
}
function check() : bool {
// https://get.adobe.com/flashplayer/webservices/json/?platform_type=Windows&platform_dist=XP&platform_arch=x86-32&platform_misc=&exclude_version=10&browser_arch=&browser_type=&browser_vers=&browser_dist=&eventname=flashplayerotherversions
if ($this->fetch('https://get.adobe.com/flashplayer/webservices/json/', true))
return $this->parse_json('Version');
return false;
}
}
?>