X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcredits.php;h=3d71c54b3aa0c4e61cd01d201efa576e41653da8;hb=41663c7592abe55a958632c3a48265e0a8544d2b;hp=cfcc30b3e2e3beb7f7879b70803109ca665e9456;hpb=b42760b0e6b243a9ab6306a1f1440e1a2effb74e;p=friendica.git diff --git a/mod/credits.php b/mod/credits.php index cfcc30b3e2..3d71c54b3a 100644 --- a/mod/credits.php +++ b/mod/credits.php @@ -5,7 +5,7 @@ * (only contributors to the git repositories for friendica core and the * addons repository will be listed though ATM) */ -use Friendica\App; + use Friendica\Core\L10n; use Friendica\Core\Renderer; @@ -13,7 +13,7 @@ function credits_content() { /* fill the page with credits */ $credits_string = file_get_contents('CREDITS.txt'); - $names = explode("\n", htmlspecialchars($credits_string)); + $names = explode("\n", $credits_string); $tpl = Renderer::getMarkupTemplate('credits.tpl'); return Renderer::replaceMacros($tpl, [ '$title' => L10n::t('Credits'),