aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mod/siteinfo.php (renamed from mod/friendica.php)16
1 files changed, 11 insertions, 5 deletions
diff --git a/mod/friendica.php b/mod/siteinfo.php
index 276e1c7f5..671f7110d 100644
--- a/mod/friendica.php
+++ b/mod/siteinfo.php
@@ -1,6 +1,7 @@
<?php
function friendica_init(&$a) {
+
if ($a->argv[1]=="json"){
$register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN');
@@ -44,18 +45,23 @@ function friendica_init(&$a) {
-function friendica_content(&$a) {
+function siteinfo_content(&$a) {
+
+ // FIXME Gak - this needs to be a template.
$o = '';
- $o .= '<h3>Friendica</h3>';
+ $o .= '<h3>' . t('Red') . '</h3>';
$o .= '<p></p><p>';
- $o .= t('This is Friendica, version') . ' ' . FRIENDICA_VERSION . ' ';
- $o .= t('running at web location') . ' ' . z_root() . '</p><p>';
+ $o .= t('This is Red - another decentralized, distributed communications project by the folks at Friendica.');
+ if(! get_config('system','hidden_version_siteinfo'))
+ $o .= '</p><p>' . sprintf( t('Version %s'), FRIENDICA_VERSION ) . '</p><p>';
+ $o .= '</p><p>';
+ $o .= t('Running at web location') . ' ' . z_root() . '</p><p>';
- $o .= t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica project.') . '</p><p>';
+ $o .= t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica and/or Red project.') . '</p><p>';
$o .= t('Bug reports and issues: please visit') . ' ' . '<a href="http://bugs.friendica.com">Bugs.Friendica.com</a></p><p>';
$o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '</p>';