From 59421cedc4908c33426704d872819cf08ba426c5 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Thu, 3 Apr 2025 17:51:25 +0200 Subject: [PATCH] MS Office 2024: update regex --- modules/MSOffice2024.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/MSOffice2024.php b/modules/MSOffice2024.php index 9f8e394..f8de945 100644 --- a/modules/MSOffice2024.php +++ b/modules/MSOffice2024.php @@ -8,7 +8,7 @@ class MSOffice2024 extends PatchBase { function check() : bool { if ($this->fetch('https://docs.microsoft.com/en-us/officeupdates/update-history-office-2024')) { $this->str_crop('retail-versions-of-office-2024', ''); - return $this->parse('/Version ([\d]+ \(Build [\d\.]+\))/'); + return $this->parse('/Version ([\d]+ \((Build )?[\d\.]+\))/'); } return false; }