From 42cca64a7dc93d90c2a9dc889d01818f26da23ac Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Wed, 10 Dec 2025 00:38:53 +0000 Subject: [PATCH] * [bug#67676] Fix the bug of batch edit frozen stories. --- module/story/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/control.php b/module/story/control.php index 410ef14ab5..1116889fd3 100755 --- a/module/story/control.php +++ b/module/story/control.php @@ -369,7 +369,7 @@ class story extends control } $stories = $this->storyZen->getStoriesByChecked(); - if(!$stories) return $this->send(array('result' => 'fail', 'load' => array('alert' => $this->lang->story->batchEditError, 'locate' => $this->session->storyList))); + if(!$stories) return $this->send(array('result' => 'fail', 'load' => array('alert' => $this->lang->story->batchEditError, 'load' => true))); /* Set Custom*/ foreach(explode(',', $this->config->story->list->customBatchEditFields) as $field) $customFields[$field] = $this->lang->story->$field;