From 84cd1e4835c21388ee37d5992d5174aa9c180ab0 Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Thu, 25 Aug 2022 14:56:39 +0800 Subject: [PATCH] * Fix bug#26878. --- module/story/view/view.html.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/module/story/view/view.html.php b/module/story/view/view.html.php index 572e439daa..6d1934c703 100644 --- a/module/story/view/view.html.php +++ b/module/story/view/view.html.php @@ -326,7 +326,17 @@ story->legendMailto;?> - mailto); foreach($mailto as $account) {if(empty($account)) continue; echo "" . zget($users, trim($account)) . '  '; }?> + + mailto)) + { + foreach(explode(',', $story->mailto) as $account) + { + if(empty($account)) continue; echo "" . zget($users, trim($account)) . '  '; + } + } + ?> +