Lowered minimum lengths for forum stuff.
This commit is contained in:
parent
5aaff24eca
commit
78a3fa9c07
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
define('MSZ_TOPIC_TITLE_LENGTH_MIN', 5);
|
||||
define('MSZ_TOPIC_TITLE_LENGTH_MIN', 2);
|
||||
define('MSZ_TOPIC_TITLE_LENGTH_MAX', 100);
|
||||
define('MSZ_POST_TEXT_LENGTH_MIN', 3);
|
||||
define('MSZ_POST_TEXT_LENGTH_MIN', 2);
|
||||
define('MSZ_POST_TEXT_LENGTH_MAX', 60000);
|
||||
|
||||
function forum_validate_title(string $title): string
|
||||
|
|
Loading…
Reference in a new issue