From 4b3ef3affbd7e2db51742064ae24b1570ca0602e Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Tue, 16 Jan 2024 10:38:33 +0800 Subject: [PATCH] * Fix bug#42892. --- module/story/ui/view.html.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/story/ui/view.html.php b/module/story/ui/view.html.php index 79f003cffa..a1e5963f3e 100644 --- a/module/story/ui/view.html.php +++ b/module/story/ui/view.html.php @@ -152,6 +152,8 @@ if(!empty($story->children)) $cols['id']['checkbox'] = false; $cols['title']['nestedToggle'] = false; + foreach(array_keys($cols) as $fieldName) $cols[$fieldName]['sortType'] = false; + $options = array('users' => $users); foreach($story->children as $child) $child = $this->story->formatStoryForList($child, $options); }