]> git.mxchange.org Git - friendica.git/commitdiff
Fix reference to Entity\LocalRelationship class after simplifying `use` statement...
authorHypolite Petovan <hypolite@mrpetovan.com>
Mon, 28 Aug 2023 17:30:01 +0000 (13:30 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 28 Aug 2023 17:30:01 +0000 (13:30 -0400)
- Address https://github.com/friendica/friendica/issues/13156#issuecomment-1696009068

src/Module/Contact/Profile.php

index d6f5a90ce8810a1dfb94a2f28e703ead81e76fcd..e6dedf1b41591950c59f979c352d356718303056 100644 (file)
@@ -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')
                                ]
                        ];
                }