From bf19eb8d06be36977aa9f3ba89ed009cfb528971 Mon Sep 17 00:00:00 2001 From: dingguodong Date: Mon, 24 Jul 2023 18:42:34 +0800 Subject: [PATCH] * Fix bad call of $dao::$errors. --- module/story/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/zen.php b/module/story/zen.php index 107323888d..97a7fe652b 100644 --- a/module/story/zen.php +++ b/module/story/zen.php @@ -827,7 +827,7 @@ class storyZen extends story } if($this->post->result == false) { - dao::$errors[] = $this->lang->story->mustChooseResult; + dao::$errors['result'][] = $this->lang->story->mustChooseResult; return false; }