SystemRescue: fix regex

This commit is contained in:
Steffen Lange 2022-01-06 17:26:36 +01:00
parent 82d4350f5e
commit 7ac94fbbbe

View file

@ -6,7 +6,7 @@ class SysRescCd extends PatchBase {
}
function check() : bool {
if ($this->fetch('http://www.system-rescue-cd.org/Detailed-packages-list/'))
return $this->parse('/<strong>SystemRescueCd-([\d\.]+)<\/strong>/');
return $this->parse('/<strong>SystemRescue-([\d\.]+)<\/strong>/');
return false;
}
}