]> git.mxchange.org Git - friendica.git/blobdiff - mod/credits.php
Merge pull request #6356 from MrPetovan/task/6355-add-password-rules
[friendica.git] / mod / credits.php
index 880b4b34c4cdbaab87a18a9c1383340ef51d32ab..56b7cd6618cd90353789c2c9f5b87c3f44a8a4b7 100644 (file)
@@ -7,14 +7,15 @@
  */
 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));
-       $tpl = get_markup_template('credits.tpl');
-       return replace_macros($tpl, [
+       $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'),
                '$thanks' => L10n::t('Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!'),
                '$names'  => $names,