change 140-char limit to unlimited by default
This commit is contained in:
parent
1c05ed0845
commit
7ce2b3c756
5
README
5
README
@ -871,9 +871,8 @@ shorturllength: ignored. See 'url' section below.
|
|||||||
dupelimit: minimum time allowed for one person to say the same thing
|
dupelimit: minimum time allowed for one person to say the same thing
|
||||||
twice. Default 60s. Anything lower is considered a user
|
twice. Default 60s. Anything lower is considered a user
|
||||||
or UI error.
|
or UI error.
|
||||||
textlimit: default max size for texts in the site. Defaults to 140.
|
textlimit: default max size for texts in the site. Defaults to 0 (no limit).
|
||||||
0 means no limit. Can be fine-tuned for notices, messages,
|
Can be fine-tuned for notices, messages, profile bios and group descriptions.
|
||||||
profile bios and group descriptions.
|
|
||||||
|
|
||||||
db
|
db
|
||||||
--
|
--
|
||||||
|
@ -58,7 +58,7 @@ $default =
|
|||||||
'sslserver' => null,
|
'sslserver' => null,
|
||||||
'shorturllength' => 30,
|
'shorturllength' => 30,
|
||||||
'dupelimit' => 60, // default for same person saying the same thing
|
'dupelimit' => 60, // default for same person saying the same thing
|
||||||
'textlimit' => 140,
|
'textlimit' => 0, // in chars; 0 == no limit
|
||||||
'indent' => true,
|
'indent' => true,
|
||||||
'use_x_sendfile' => false,
|
'use_x_sendfile' => false,
|
||||||
'notice' => null, // site wide notice text
|
'notice' => null, // site wide notice text
|
||||||
|
Loading…
Reference in New Issue
Block a user