OwnCloud: Renaming

This commit is contained in:
Steffen Lange 2021-01-07 16:13:18 +01:00
parent 9b7bbf2e01
commit 6e7870a3fb

View file

@ -0,0 +1,14 @@
<?php
class OwnCloudServer extends PatchBase {
function __construct() {
parent::__construct('ownCloud GmbH', 'ownCloud Server', 'https://owncloud.com/download-server/');
}
function check() : bool {
if ($this->fetch('https://owncloud.com/download-server/'))
return $this->parse('/Version: <strong>ownCloud Server ([\d\.]+)<\/strong>/');
return false;
}
}
?>