From e28360fc5b19be912cbf6c42d9b91fe00371701e Mon Sep 17 00:00:00 2001 From: Linty Date: Mon, 7 Jul 2025 09:53:48 +0200 Subject: [PATCH] fixes #2388 hide update actions for dev mode extensions --- admin/updates_ext.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/admin/updates_ext.php b/admin/updates_ext.php index abead9a2d..ea3091673 100644 --- a/admin/updates_ext.php +++ b/admin/updates_ext.php @@ -56,6 +56,12 @@ foreach ($autoupdate->types as $type) continue; } + // In dev mode, do not show update actions + if ('auto' === $fs_ext['version']) + { + continue; + } + $ext_info = $server_ext[$fs_ext['extension']]; if (!safe_version_compare($fs_ext['version'], $ext_info['revision_name'], '>='))