From cd27a33ee015e41a69021de9c8fe71faf1c62384 Mon Sep 17 00:00:00 2001 From: sunhao Date: Mon, 21 Oct 2024 14:02:12 +0800 Subject: [PATCH] * [misc] fix execution lib name in home page. --- module/doc/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/doc/model.php b/module/doc/model.php index b681824503..9693d07a6e 100644 --- a/module/doc/model.php +++ b/module/doc/model.php @@ -1819,7 +1819,7 @@ class docModel extends model foreach($executionLibs as &$lib) { $lib->originName = $lib->name; - $lib->name = $executionPairs[$lib->execution]; + $lib->name = $executionPairs[$lib->execution] . '/' . $lib->name; } }