Update obsolete App::getBaseUrl calls to DI::baseUrl

This commit is contained in:
Hypolite Petovan 2019-12-29 21:55:10 -05:00
parent c03588f0b4
commit 905823ea63
38 changed files with 510 additions and 480 deletions

View file

@ -2,6 +2,7 @@
use Friendica\Content\Text\HTML;
use Friendica\Core\L10n;
use Friendica\DI;
function friends_widget_name()
{
@ -49,6 +50,6 @@ function friends_widget_content(&$a, $conf)
</style>";
$o .= _abs_url(HTML::contactBlock());
$o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
return $o;
}