]> git.mxchange.org Git - friendica.git/blobdiff - mod/credits.php
Cleanup /format pre-move
[friendica.git] / mod / credits.php
index f5c34b6105037f094f0098701c4b1a876252853f..def2031a000f0efa770304a5cb335049abaddb74 100644 (file)
@@ -1,20 +1,22 @@
 <?php
+
 /**
  * Show a credits page for all the developers who helped with the project
  * (only contributors to the git repositories for friendica core and the
  * addons repository will be listed though ATM)
  */
 
-function credits_content (App $a) {
-    /* fill the page with credits */
-    $f = fopen('util/credits.txt','r');
-    $names = fread($f, filesize('util/credits.txt'));
-    $arr = explode("\n", htmlspecialchars($names));
-    fclose($f);
-    $tpl = get_markup_template('credits.tpl');
-    return replace_macros( $tpl, array(
-       '$title'                => t('Credits'),
-       '$thanks'               => 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'         => $arr,
-    ));
+
+function credits_content(App $a) {
+       /* fill the page with credits */
+       $f = fopen('util/credits.txt', 'r');
+       $names = fread($f, filesize('util/credits.txt'));
+       $arr = explode("\n", htmlspecialchars($names));
+       fclose($f);
+       $tpl = get_markup_template('credits.tpl');
+       return replace_macros($tpl, array(
+               '$title'  => t('Credits'),
+               '$thanks' => 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'  => $arr,
+       ));
 }