From f4b5f7314d5490402d80149a0ce54db2bf217bff Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 30 Dec 2019 07:44:28 +0100 Subject: [PATCH] 2020.03-dev: changed ->getBaseURL to DI::baseUrl->get --- typography.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/typography.php b/typography.php index c0075e0..359cecd 100644 --- a/typography.php +++ b/typography.php @@ -7,6 +7,7 @@ * License: GPL 2.0 */ +use Friendica\DI; use Friendica\Core\PConfig; use Friendica\Core\Addon; @@ -66,6 +67,6 @@ function typography_render ( &$a, &$o) { $typo->set_diacritic_language($lng); $typo->set_hyphenation_language($lng); $o['html'] = $typo->process($o['html']); - $a->page['htmlhead'] .= ''; + $a->page['htmlhead'] .= ''; unset($l); }