]> git.mxchange.org Git - friendica.git/blobdiff - mod/credits.php
Merge branch 'develop' into rewrites/dbm_is_result
[friendica.git] / mod / credits.php
index 49073635317175b4dae5b6941c97ffd9b939ec30..84e32b83d578133c70c6be16b7f473fd3f8d523c 100644 (file)
@@ -5,7 +5,7 @@
  * addons repository will be listed though ATM)
  */
 
-function credits_content (&$a) {
+function credits_content (App &$a) {
     /* fill the page with credits */
     $f = fopen('util/credits.txt','r');
     $names = fread($f, filesize('util/credits.txt'));
@@ -13,7 +13,7 @@ function credits_content (&$a) {
     fclose($f);
     $tpl = get_markup_template('credits.tpl');
     return replace_macros( $tpl, array(
-       '$pagetitle'            => t('Credits'),
+       '$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,
     ));