Skip to content

Commit

Permalink
#1788 [Question] fix : move descritption
Browse files Browse the repository at this point in the history
  • Loading branch information
evarisk-kilyan committed Aug 28, 2024
1 parent a2bd7f1 commit 7983519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class/question.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class Question extends SaturneObject
'status' => ['type' => 'smallint', 'label' => 'Status', 'enabled' => 1, 'position' => 70, 'notnull' => 1, 'visible' => 5, 'index' => 1, 'default' => 0, 'arrayofkeyval' => ['specialCase' => 'InProgressAndLocked', 1 => 'InProgress', 2 => 'Locked', 3 => 'Archived'], 'css' => 'minwidth200'],
'type' => ['type' => 'varchar(128)', 'label' => 'Type', 'enabled' => 1, 'position' => 80, 'notnull' => 1, 'visible' => 1],
'label' => ['type' => 'varchar(255)', 'label' => 'Label', 'enabled' => 1, 'position' => 11, 'notnull' => 1, 'visible' => 1, 'searchall' => 1, 'css' => 'minwidth200', 'showoncombobox' => 1],
'description' => ['type' => 'html', 'label' => 'Description', 'enabled' => 1, 'position' => 100, 'notnull' => 0, 'visible' => 1],
'description' => ['type' => 'html', 'label' => 'Description', 'enabled' => 1, 'position' => 12, 'notnull' => 0, 'visible' => 1],
'show_photo' => ['type' => 'boolean', 'label' => 'ShowPhoto', 'enabled' => 1, 'position' => 110, 'notnull' => 0, 'visible' => 0],
'authorize_answer_photo' => ['type' => 'boolean', 'label' => 'AuthorizeAnswerPhoto', 'enabled' => 1, 'position' => 120, 'notnull' => 0, 'visible' => 0],
'enter_comment' => ['type' => 'boolean', 'label' => 'EnterComment', 'enabled' => 1, 'position' => 130, 'notnull' => 0, 'visible' => 0],
Expand Down

0 comments on commit 7983519

Please sign in to comment.