]> git.mxchange.org Git - friendica.git/blobdiff - mod/removeme.php
Use short form array syntax everywhere
[friendica.git] / mod / removeme.php
index bf5969982a2c3cf462029ad5876789c3217ebbb4..5912a6e3139fda4d45bd695b9ca5d5a75e6d97a8 100644 (file)
@@ -46,14 +46,14 @@ function removeme_content(App $a)
        $_SESSION['remove_account_verify'] = $hash;
 
        $tpl = get_markup_template('removeme.tpl');
-       $o .= replace_macros($tpl, array(
+       $o .= replace_macros($tpl, [
                '$basedir' => System::baseUrl(),
                '$hash' => $hash,
                '$title' => t('Remove My Account'),
                '$desc' => t('This will completely remove your account. Once this has been done it is not recoverable.'),
                '$passwd' => t('Please enter your password for verification:'),
                '$submit' => t('Remove My Account')
-       ));
+       ]);
 
        return $o;
 }