]> git.mxchange.org Git - friendica.git/blobdiff - mod/credits.php
BBCode - fixed syntax error
[friendica.git] / mod / credits.php
index c53c86b8b9882b3b1913cb2db2ab651a8069d7f1..3d71c54b3aa0c4e61cd01d201efa576e41653da8 100644 (file)
@@ -5,15 +5,15 @@
  * (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;
 
 function credits_content()
 {
        /* fill the page with credits */
-       $credits_string = file_get_contents('util/credits.txt');
-       $names = explode("\n", htmlspecialchars($credits_string));
+       $credits_string = file_get_contents('CREDITS.txt');
+       $names = explode("\n", $credits_string);
        $tpl = Renderer::getMarkupTemplate('credits.tpl');
        return Renderer::replaceMacros($tpl, [
                '$title'  => L10n::t('Credits'),