diff options
author | friendica <info@friendica.com> | 2014-01-24 21:20:00 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-24 21:20:00 -0800 |
commit | c71a1f0796836b158185e20cfc8235b236b1d068 (patch) | |
tree | 05cfb5d3be76725491d2551d52e7c650050648ac /mod/siteinfo.php | |
parent | 3869b16298041887d0c90c884ffb5b22df8d56e9 (diff) | |
parent | 692822bdf0e6983af151106a927189c2179c0ac6 (diff) | |
download | volse-hubzilla-c71a1f0796836b158185e20cfc8235b236b1d068.tar.gz volse-hubzilla-c71a1f0796836b158185e20cfc8235b236b1d068.tar.bz2 volse-hubzilla-c71a1f0796836b158185e20cfc8235b236b1d068.zip |
Merge pull request #283 from beardy-unixer/master
Add admin info to admin panel and site info.
Diffstat (limited to 'mod/siteinfo.php')
-rw-r--r-- | mod/siteinfo.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/siteinfo.php b/mod/siteinfo.php index 9f65f59e4..37cba02ec 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -88,6 +88,8 @@ function siteinfo_content(&$a) { else $plugins_text = t('No installed plugins/addons/apps'); + $admininfo = bbcode(get_config('system','admininfo')); + $o = replace_macros(get_markup_template('siteinfo.tpl'), array( '$title' => t('Red'), '$description' => t('This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites.'), @@ -99,6 +101,8 @@ function siteinfo_content(&$a) { '$bug_link_url' => 'https://github.com/friendica/red/issues', '$bug_link_text' => 'redmatrix issues', '$contact' => t('Suggestions, praise, donations, etc. - please email "redmatrix" at librelist - dot com'), + '$adminlabel' => t('Site Administrators'), + '$admininfo' => $admininfo, '$plugins_text' => $plugins_text, '$plugins_list' => $plugins_list )); |