Skip to content

Commit

Permalink
Enh #234: Increase File description max characters from 255 to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-farre committed Oct 10, 2024
1 parent dc65df7 commit c05d7da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Changelog
- Fix: Add autofocus on file or folder edit (for HumHub 1.17 - see https://github.com/humhub/humhub/issues/7136)
- Fix #230: Optimize sql query to get files from the stream
- Enh #232: Update Active Form for Bootstrap 5
- Enh #234: Increase File description max characters from 255 to 1000

0.16.6 - March 14, 2024
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion models/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function rules()
[['parent_folder_id'], 'required'],
['parent_folder_id', 'integer'],
['parent_folder_id', 'validateParentFolderId'],
['description', 'string', 'max' => 255],
['description', 'string', 'max' => 1000],
['topics', 'safe'],
['hidden', 'boolean'],
];
Expand Down

0 comments on commit c05d7da

Please sign in to comment.