]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #2278 from tobiasd/20160122-doc
authorfabrixxm <fabrix.xm@gmail.com>
Sat, 23 Jan 2016 09:12:58 +0000 (10:12 +0100)
committerfabrixxm <fabrix.xm@gmail.com>
Sat, 23 Jan 2016 09:12:58 +0000 (10:12 +0100)
docs

mod/admin.php

index e9e6323680bf0280eba6fb4ce5bf9cbd0fac13c2..7f9000807be62021fa9535778bdc5bd5972b5c97 100644 (file)
@@ -271,6 +271,7 @@ function admin_page_federation(&$a) {
        // displayed on the stats page.
        $platforms = array('Friendica', 'Diaspora', '%%red%%', 'Hubzilla', 'GNU Social', 'StatusNet');
        $counts = array();
+       $total = 0;
 
        foreach ($platforms as $p) {
                // get a total count for the platform, the name and version of the
@@ -278,6 +279,7 @@ function admin_page_federation(&$a) {
                $c = q('SELECT count(*) AS total, platform, network, version FROM gserver
                        WHERE platform LIKE "%s" AND last_contact > last_failure
                        ORDER BY version ASC;', $p);
+               $total = $total + $c[0]['total'];
 
                // what versions for that platform do we know at all?
                // again only the active nodes
@@ -355,7 +357,7 @@ function admin_page_federation(&$a) {
                '$autoactive' => get_config('system', 'poco_completion'),
                '$counts' => $counts,
                '$version' => FRIENDICA_VERSION,
-               '$legendtext' => t('Currently this node is aware of nodes from the following platforms:'),
+               '$legendtext' => sprintf(t('Currently this node is aware of %d nodes from the following platforms:'), $total),
                '$baseurl' => $a->get_baseurl(),
        ));
 }