From 9aa9aa42b329c11cf73168d040a96f9751ae685c Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Thu, 16 Oct 2025 17:35:33 +0200 Subject: [PATCH] Scilab: fix regex --- modules/Scilab.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Scilab.php b/modules/Scilab.php index 37a723d..a84be76 100644 --- a/modules/Scilab.php +++ b/modules/Scilab.php @@ -5,8 +5,8 @@ class Scilab extends PatchBase { parent::__construct('ESI Group', 'Scilab', 'https://www.scilab.org/download'); } function check() : bool { - if ($this->fetch_header('https://www.scilab.org/latest')) - return $this->parse('/\/download\/scilab-([\d\.]+)/'); + if ($this->fetch('https://www.scilab.org/download')) + return $this->parse('/

Scilab ([\d\.]+)<\/h1>/'); return false; } }