mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:42:53 +00:00
Fix notice "Undefined index: keywords"
This commit is contained in:
parent
c852e1479c
commit
2756c3249b
1 changed files with 7 additions and 1 deletions
|
@ -176,7 +176,7 @@ class PageInfo
|
|||
|
||||
if (!$keywords) {
|
||||
unset($data['keywords']);
|
||||
} elseif ($keyword_denylist) {
|
||||
} elseif ($keyword_denylist && !empty($data['keywords'])) {
|
||||
$list = explode(', ', $keyword_denylist);
|
||||
|
||||
foreach ($list as $keyword) {
|
||||
|
@ -205,8 +205,14 @@ class PageInfo
|
|||
{
|
||||
$data = self::queryUrl($url, $photo, true, $keyword_denylist);
|
||||
|
||||
if (empty($data['keywords'])) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$taglist = [];
|
||||
|
||||
foreach ($data['keywords'] as $keyword) {
|
||||
|
||||
$hashtag = str_replace([' ', '+', '/', '.', '#', "'"],
|
||||
['', '', '', '', '', ''], $keyword);
|
||||
|
||||
|
|
Loading…
Reference in a new issue