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:
authorrobocoder <anthon.pang@gmail.com>2009-05-28 02:45:25 +0400
committerrobocoder <anthon.pang@gmail.com>2009-05-28 02:45:25 +0400
commit7d6ba208948710b78336a4c63a072ddfd21b979a (patch)
tree0204658a4a081947ddf4e374cf44d8907acc523d /plugins/ExampleRssWidget
parent86627301f3aebde559dfc94a1d32049e9fcc183e (diff)
fixes #743 - optimize include path; refs #631
git-svn-id: http://dev.piwik.org/svn/trunk@1150 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/ExampleRssWidget')
-rw-r--r--plugins/ExampleRssWidget/ExampleRssWidget.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ExampleRssWidget/ExampleRssWidget.php b/plugins/ExampleRssWidget/ExampleRssWidget.php
index 57bbb64b9e..11db10348b 100644
--- a/plugins/ExampleRssWidget/ExampleRssWidget.php
+++ b/plugins/ExampleRssWidget/ExampleRssWidget.php
@@ -69,7 +69,7 @@ class Piwik_ExampleRssWidget_Rss
}
function get()
{
- require_once 'libs/Zend/Feed.php';
+ require_once 'Zend/Feed.php';
try {
$rss = Zend_Feed::import($this->url);
} catch (Zend_Feed_Exception $e) {
@@ -102,4 +102,4 @@ class Piwik_ExampleRssWidget_Rss
$output .= '</ul></div>';
return $output;
}
-} \ No newline at end of file
+}