mirror of
https://github.com/friendica/friendica
synced 2025-04-24 23:50:20 +00:00
Update references to BBCode methods
- Resolve name conflicts with Util\Network
This commit is contained in:
parent
b4651870db
commit
010cf3b1e8
9 changed files with 56 additions and 54 deletions
|
@ -2,9 +2,11 @@
|
|||
/**
|
||||
* @file mod/display.php
|
||||
*/
|
||||
|
||||
use Friendica\App;
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Core\Network;
|
||||
use Friendica\Core\System;
|
||||
use Friendica\Database\DBM;
|
||||
use Friendica\Model\Contact;
|
||||
|
@ -171,7 +173,7 @@ function display_fetchauthor($a, $item) {
|
|||
$profiledata["photo"] = $matches[1];
|
||||
}
|
||||
$profiledata["nickname"] = $profiledata["name"];
|
||||
$profiledata["network"] = GetProfileUsername($profiledata["url"], "", false, true);
|
||||
$profiledata["network"] = Network::matchByProfileUrl($profiledata["url"]);
|
||||
|
||||
$profiledata["address"] = "";
|
||||
$profiledata["about"] = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue