diff options
author | zotlabs <mike@macgirvin.com> | 2017-02-05 14:45:28 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-02-05 14:45:28 -0800 |
commit | e2ee4ae0244ff1698b28f89b05ea9b0ce65273aa (patch) | |
tree | e5904c2c105feaefc064bc084f740a93ee20326b /Zotlabs/Module | |
parent | ab698305bf9b269f5b19de5cd7b0d175dd0e0c29 (diff) | |
download | volse-hubzilla-e2ee4ae0244ff1698b28f89b05ea9b0ce65273aa.tar.gz volse-hubzilla-e2ee4ae0244ff1698b28f89b05ea9b0ce65273aa.tar.bz2 volse-hubzilla-e2ee4ae0244ff1698b28f89b05ea9b0ce65273aa.zip |
better theming of rmagic page
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Rmagic.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Zotlabs/Module/Rmagic.php b/Zotlabs/Module/Rmagic.php index 9252d1f1d..9fcc72441 100644 --- a/Zotlabs/Module/Rmagic.php +++ b/Zotlabs/Module/Rmagic.php @@ -70,13 +70,12 @@ class Rmagic extends \Zotlabs\Web\Controller { function get() { - - $o = replace_macros(get_markup_template('rmagic.tpl'),array( - '$title' => t('Remote Authentication'), - '$desc' => t('Enter your channel address (e.g. channel@example.com)'), - '$submit' => t('Authenticate') - )); - return $o; - + return replace_macros(get_markup_template('rmagic.tpl'), + [ + '$title' => t('Remote Authentication'), + '$address' => [ 'address', t('Enter your channel address (e.g. channel@example.com)'), '', '' ], + '$submit' => t('Authenticate') + ] + ); } } |