aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-18 16:48:14 -0700
committerFriendika <info@friendika.com>2011-08-18 16:48:14 -0700
commit2d90068ec2b4fc6c918c87fc9321c3954da6a26f (patch)
treeb5b4cbd2d09421670d993b4c67ed70b77ef24ebf
parentbc5935061b674a5503a1a82a458dfaf3317e4c70 (diff)
parentc8cf2d1773623980d8055ff392b400aecb2a09b3 (diff)
downloadvolse-hubzilla-2d90068ec2b4fc6c918c87fc9321c3954da6a26f.tar.gz
volse-hubzilla-2d90068ec2b4fc6c918c87fc9321c3954da6a26f.tar.bz2
volse-hubzilla-2d90068ec2b4fc6c918c87fc9321c3954da6a26f.zip
Merge branch 'pull'
-rw-r--r--addon/piwik/piwik.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/addon/piwik/piwik.php b/addon/piwik/piwik.php
index 8389416e9..890309d4f 100644
--- a/addon/piwik/piwik.php
+++ b/addon/piwik/piwik.php
@@ -66,7 +66,12 @@ function piwik_analytics($a,&$b) {
* otherwise just include the above code into the page.
*/
if ($optout) {
- $b .= "<div id='piwik-optout-link'>This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool. If you do not want that your visits are logged this way you <a href='http://". $baseurl ."index.php?module=CoreAdminHome&action=optOut'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out).</div>";
+ $b .= "<div id='piwik-optout-link'>";
+ $b .= t("This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool.");
+ $b .= " ";
+ $the_url = "http://".$baseurl ."index.php?module=CoreAdminHome&action=optOut";
+ $b .= sprintf(t("If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."), $the_url);
+ $b .= "</div>";
}
}