Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2012-08-16 05:42:18 +0400
committermattpiwik <matthieu.aubry@gmail.com>2012-08-16 05:42:18 +0400
commitc6d0812a97347a2e41f5cd6176ffa4ae9a6ac1df (patch)
treeca3c24b38d610c2fb92e7a523a34ac9e3bc98543
parentb369ece3068bdf2045838b2c7fed31629d61bc03 (diff)
Fixing feedburner
git-svn-id: http://dev.piwik.org/svn/trunk@6781 59fd770c-687e-43c8-a1e3-f5a4ff64c105
-rw-r--r--plugins/ExampleFeedburner/ExampleFeedburner.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExampleFeedburner/ExampleFeedburner.php b/plugins/ExampleFeedburner/ExampleFeedburner.php
index c8f8fd39c7..86881e2b5f 100644
--- a/plugins/ExampleFeedburner/ExampleFeedburner.php
+++ b/plugins/ExampleFeedburner/ExampleFeedburner.php
@@ -106,7 +106,7 @@ class Piwik_ExampleFeedburner_Controller extends Piwik_Controller
$beforeYesterday = Piwik_Date::factory('-2 day', 'America/Los_Angeles');
//create url to gather XML feed from
- $url = 'https://feedburner.goosgle.com/api/awareness/1.0/GetFeedData?uri='.urlencode($uri).'&dates='.$beforeYesterday->toString().','.$yesterday->toString();
+ $url = 'https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri='.urlencode($uri).'&dates='.$beforeYesterday->toString().','.$yesterday->toString();
$data = '';
try {
$data = Piwik_Http::sendHttpRequest($url, 5);