X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffriendika.php;h=d0e709c753b3cd19ca77e053093aea1e7541bbc4;hb=46b220518c0a95d394398998711088ac1268c343;hp=f07164f2cbe1fc91117306fd73f877b7c77b0372;hpb=564f9c924ad07f94c24f8e9ebadc827d043da8d1;p=friendica.git diff --git a/mod/friendika.php b/mod/friendika.php index f07164f2cb..d0e709c753 100644 --- a/mod/friendika.php +++ b/mod/friendika.php @@ -1,6 +1,6 @@ argv[1]=="json"){ $register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN'); @@ -8,27 +8,30 @@ function friendika_content(&$a) { $r = q("SELECT username, nickname FROM user WHERE email='%s'", $a->config['admin_email']); $admin = array( 'name' => $r[0]['username'], - 'profile'=> $a->get_baseurl().'profile/'.$r[0]['nickname'], + 'profile'=> $a->get_baseurl().'/profile/'.$r[0]['nickname'], ); } else { $admin = false; } - - $data = Array( 'version' => FRIENDIKA_VERSION, - 'url' => $a->get_baseurl(), + 'url' => z_root(), 'plugins' => $a->plugins, 'register_policy' => $register_policy[$a->config['register_policy']], 'admin' => $admin, 'site_name' => $a->config['sitename'], - + 'info' => ((x($a->config,'info')) ? $a->config['info'] : '') ); echo json_encode($data); killme(); } +} + + + +function friendika_content(&$a) { $o = ''; $o .= '

Friendika

'; @@ -36,9 +39,8 @@ function friendika_content(&$a) { $o .= '

'; - $o .= 'View License' . '

'; $o .= t('This is Friendika version') . ' ' . FRIENDIKA_VERSION . ' '; - $o .= t('running at web location') . ' ' . $a->get_baseurl() . '

'; + $o .= t('running at web location') . ' ' . z_root() . '

'; $o .= t('Shared content within the Friendika network is provided under the Creative Commons Attribution 3.0 license') . '

'; @@ -59,7 +61,9 @@ function friendika_content(&$a) { } else $o .= '

' . t('No installed plugins/addons/apps'); - + + call_hooks('about_hook', $o); + return $o; }