From d67228f3b473a23a46af2a1fc9b23495dac11534 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Wed, 21 Dec 2022 14:03:29 +0100 Subject: [PATCH] add module id in combo list --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 6a95dda..d9981c1 100644 --- a/index.php +++ b/index.php @@ -139,7 +139,7 @@ class index if (!$m['root_writable'] || !$allow_distrib && in_array($id, $official[$this->type])) { continue; } - $combo_modules[__($m['name'])] = $id; + $combo_modules[sprintf(__('%s (%s)'), __($m['name']), $id)] = $id; } dcUtils::lexicalKeySort($combo_modules);