From 4f7180a690e8dea8e614c5bdaa1e951fba1110bb Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Thu, 21 Aug 2025 01:34:42 +0000 Subject: [PATCH] * [bug#64904] Fix the bug where textarea after the second line are not htmlspecialchars during batch create. --- lib/form/form.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/form/form.class.php b/lib/form/form.class.php index cf429dfafa..667b5c034f 100644 --- a/lib/form/form.class.php +++ b/lib/form/form.class.php @@ -488,6 +488,7 @@ class form extends fixer { $this->data = $data; $this->dataList[$rowIndex] = parent::get($fields); + $this->stripedFields = array(); } return $this->dataList; }