diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-14 22:10:21 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-14 22:10:21 -0700 |
commit | 062dea8e13ddafb1ff466d4a1c4a262d1e525e55 (patch) | |
tree | f363c253754003361603e23a38897bf82c6df033 /Zotlabs/Module | |
parent | 959667c009ece0d67945ad09774c2bd091ba1450 (diff) | |
download | volse-hubzilla-062dea8e13ddafb1ff466d4a1c4a262d1e525e55.tar.gz volse-hubzilla-062dea8e13ddafb1ff466d4a1c4a262d1e525e55.tar.bz2 volse-hubzilla-062dea8e13ddafb1ff466d4a1c4a262d1e525e55.zip |
code whitespace and formatting
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Removeme.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Zotlabs/Module/Removeme.php b/Zotlabs/Module/Removeme.php index ca2080e83..111230937 100644 --- a/Zotlabs/Module/Removeme.php +++ b/Zotlabs/Module/Removeme.php @@ -56,12 +56,12 @@ class Removeme extends \Zotlabs\Web\Controller { $tpl = get_markup_template('removeme.tpl'); $o .= replace_macros($tpl, array( '$basedir' => z_root(), - '$hash' => $hash, - '$title' => t('Remove This Channel'), - '$desc' => array(t('WARNING: '), t('This channel will be completely removed from the network. '), t('This action is permanent and can not be undone!')), - '$passwd' => t('Please enter your password for verification:'), - '$global' => array('global', t('Remove this channel and all its clones from the network'), false, t('By default only the instance of the channel located on this hub will be removed from the network'), array(t('No'),t('Yes'))), - '$submit' => t('Remove Channel') + '$hash' => $hash, + '$title' => t('Remove This Channel'), + '$desc' => [ t('WARNING: '), t('This channel will be completely removed from the network. '), t('This action is permanent and can not be undone!') ], + '$passwd' => t('Please enter your password for verification:'), + '$global' => [ 'global', t('Remove this channel and all its clones from the network'), false, t('By default only the instance of the channel located on this hub will be removed from the network'), [ t('No'),t('Yes') ] ], + '$submit' => t('Remove Channel') )); return $o; |