PHP Coding Standards fixes
All checks were successful
lint / lint (push) Successful in 14s

This commit is contained in:
n 2024-02-11 21:50:03 +01:00
parent 042dce9ead
commit 1989307a67
Signed by: n
GPG key ID: 510227DD6C502CE3

View file

@ -16,10 +16,12 @@ function hook_clickat_render_linklist($data)
'/\ @([\w\d]+)@([\w\d_\-\.]+)/' => ' <a href="https://\2/@\1">&commat;\1</a>', '/\ @([\w\d]+)@([\w\d_\-\.]+)/' => ' <a href="https://\2/@\1">&commat;\1</a>',
'/\ @([\w\d]+)/' => ' <a href="https://twitter.com/\1">&commat;\1</a>' '/\ @([\w\d]+)/' => ' <a href="https://twitter.com/\1">&commat;\1</a>'
); );
foreach ($data['links'] as &$value) foreach ($data['links'] as &$value) {
if (strpos($value['description'],' @') !== false) if (strpos($value['description'], ' @') !== false) {
foreach($patterns as $nic => $link) foreach($patterns as $nic => $link) {
$value['description'] = preg_replace($nic, $link, $value['description']); $value['description'] = preg_replace($nic, $link, $value['description']);
}
}
}
return $data; return $data;
} }