From 0701f70bfe59d3e90f812192d720acf1c2f4f237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Fi=C5=A1era?= Date: Mon, 28 Aug 2023 15:19:51 +0200 Subject: [PATCH] #517 - Add missing semicolor. --- src/app/scripts/php/libs/Ui.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/scripts/php/libs/Ui.class.php b/src/app/scripts/php/libs/Ui.class.php index 4a1e2d19..78574116 100644 --- a/src/app/scripts/php/libs/Ui.class.php +++ b/src/app/scripts/php/libs/Ui.class.php @@ -653,7 +653,7 @@ public function textarea($name, $nameIndex = -1, $default = "", $params = array( } if ($model->isSubmit()) { - $this->setModelValueFromRequest($model, $name, $name, $nameIndex, ['~' => '~']); + $this->setModelValueFromRequest($model, $name, $name, $nameIndex, ['~' => '~']); } if ($model->isRender()) { @@ -666,7 +666,7 @@ public function textarea($name, $nameIndex = -1, $default = "", $params = array( $params = $this->appendId($params); $attributes = $this->joinAttributes($params); - $modelValue = str_replace('~', '~', $modelValue); + $modelValue = str_replace('~', '~', $modelValue); return ""; } }