PatchBot/modules/FileZilla.php
2021-01-17 23:19:46 +01:00

14 lines
403 B
PHP

<?php
class FileZilla extends PatchBase {
function __construct() {
parent::__construct('Tim Kosse', 'FileZilla', 'https://filezilla-project.org/download.php?show_all=1');
}
function check() : bool {
if ($this->fetch('https://filezilla-project.org/download.php?show_all=1'))
return $this->parse('/<p>The latest stable version of FileZilla Client is ([\d\.]+)<\/p>/');
return false;
}
}
?>