PatchBot/modules/MozillaThunderbird.php
2019-07-15 22:27:48 +02:00

14 lines
437 B
PHP

<?php
class MozillaThunderbird extends PatchBase {
function __construct() {
parent::__construct('Mozilla', 'Thunderbird', 'https://www.thunderbird.net/de/thunderbird/all/');
}
function check() : bool {
if ($this->fetch('https://www.thunderbird.net/de/thunderbird/all/'))
return $this->parse('_"https://download\.mozilla\.org/\?product=thunderbird-([\d\.]+)(-SSL)?&(amp;)?os=win&(amp;)?lang=en-US"_');
return false;
}
}
?>