mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Merge pull request #13385 from MrPetovan/bug/fatal-errors
Fix reference to Entity\LocalRelationship class after simplifying `use` statement in Contact\Profile
This commit is contained in:
commit
350999fcca
1 changed files with 4 additions and 4 deletions
|
@ -302,10 +302,10 @@ class Profile extends BaseModule
|
|||
$localRelationship->fetchFurtherInformation,
|
||||
$this->t('Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn\'t contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags.'),
|
||||
[
|
||||
Entity\LocalRelationship::FFI_NONE => $this->t('Disabled'),
|
||||
Entity\LocalRelationship::FFI_INFORMATION => $this->t('Fetch information'),
|
||||
Entity\LocalRelationship::FFI_KEYWORD => $this->t('Fetch keywords'),
|
||||
Entity\LocalRelationship::FFI_BOTH => $this->t('Fetch information and keywords')
|
||||
LocalRelationship\Entity\LocalRelationship::FFI_NONE => $this->t('Disabled'),
|
||||
LocalRelationship\Entity\LocalRelationship::FFI_INFORMATION => $this->t('Fetch information'),
|
||||
LocalRelationship\Entity\LocalRelationship::FFI_KEYWORD => $this->t('Fetch keywords'),
|
||||
LocalRelationship\Entity\LocalRelationship::FFI_BOTH => $this->t('Fetch information and keywords')
|
||||
]
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue