mirror of
https://github.com/friendica/friendica
synced 2025-04-26 22:30:18 +00:00
Issue 8254 More length shortenings
This commit is contained in:
parent
85b0b676c1
commit
6f22e3909b
3 changed files with 3 additions and 3 deletions
|
@ -1558,7 +1558,7 @@ class Item
|
|||
$item['object'] = trim($item['object'] ?? '');
|
||||
$item['target-type'] = trim($item['target-type'] ?? '');
|
||||
$item['target'] = trim($item['target'] ?? '');
|
||||
$item['plink'] = trim($item['plink'] ?? '');
|
||||
$item['plink'] = substr(trim($item['plink'] ?? ''), 0, 255);
|
||||
$item['allow_cid'] = trim($item['allow_cid'] ?? '');
|
||||
$item['allow_gid'] = trim($item['allow_gid'] ?? '');
|
||||
$item['deny_cid'] = trim($item['deny_cid'] ?? '');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue