From 4180b68117b81d7d70f20792f25aea332d28b1c8 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Thu, 9 Jan 2025 19:12:50 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20(edit-user):=20add=20a=20way=20to?= =?UTF-8?q?=20change=20description?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bl-kernel/admin/views/edit-user.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bl-kernel/admin/views/edit-user.php b/bl-kernel/admin/views/edit-user.php index 05c3b434..a3c32982 100644 --- a/bl-kernel/admin/views/edit-user.php +++ b/bl-kernel/admin/views/edit-user.php @@ -95,6 +95,15 @@ echo Bootstrap::formInputHidden(array( 'placeholder' => '', 'tip' => '' )); + + echo Bootstrap::formTextarea(array( + 'name' => 'description', + 'label' => $L->g('Description'), + 'value' => $user->description(), + 'class' => '', + 'placeholder' => '', + 'tip' => '' + )); ?>