mirror of
https://github.com/friendica/friendica
synced 2025-04-26 17:50:11 +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
|
@ -453,7 +453,7 @@ function notification($params)
|
|||
if ($show_in_notification_page) {
|
||||
$notification = DI::notify()->insert([
|
||||
'name' => $params['source_name'] ?? '',
|
||||
'name_cache' => strip_tags(BBCode::convert($params['source_name'] ?? '')),
|
||||
'name_cache' => substr(strip_tags(BBCode::convert($params['source_name'] ?? '')), 0, 255),
|
||||
'url' => $params['source_link'] ?? '',
|
||||
'photo' => $params['source_photo'] ?? '',
|
||||
'link' => $itemlink ?? '',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue