ajout et édition de profil, propriété permanent

This commit is contained in:
Fred Tempez 2023-07-27 08:01:10 +02:00
parent 2944363e29
commit 7168174c39
1 changed files with 2 additions and 0 deletions

View File

@ -552,6 +552,7 @@ class user extends common
$data = [ $data = [
'name' => $this->getInput('profilEditName', helper::FILTER_STRING_SHORT, true), 'name' => $this->getInput('profilEditName', helper::FILTER_STRING_SHORT, true),
'readonly' => false, 'readonly' => false,
'permanent' => false,
'comment' => $this->getInput('profilEditComment', helper::FILTER_STRING_SHORT, true), 'comment' => $this->getInput('profilEditComment', helper::FILTER_STRING_SHORT, true),
'filemanager' => $this->getInput('profilEditFileManager', helper::FILTER_BOOLEAN), 'filemanager' => $this->getInput('profilEditFileManager', helper::FILTER_BOOLEAN),
'file' => [ 'file' => [
@ -655,6 +656,7 @@ class user extends common
$data = [ $data = [
'name' => $this->getInput('profilAddName', helper::FILTER_STRING_SHORT, true), 'name' => $this->getInput('profilAddName', helper::FILTER_STRING_SHORT, true),
'readonly' => false, 'readonly' => false,
'permanent' => false,
'comment' => $this->getInput('profilAddComment', helper::FILTER_STRING_SHORT, true), 'comment' => $this->getInput('profilAddComment', helper::FILTER_STRING_SHORT, true),
'filemanager' => $this->getInput('profilAddFileManager', helper::FILTER_BOOLEAN), 'filemanager' => $this->getInput('profilAddFileManager', helper::FILTER_BOOLEAN),
'file' => [ 'file' => [