summaryrefslogtreecommitdiff
path: root/plugins/example_feed/init.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/example_feed/init.php')
-rw-r--r--plugins/example_feed/init.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/example_feed/init.php b/plugins/example_feed/init.php
index af14d3ff3..19d089667 100644
--- a/plugins/example_feed/init.php
+++ b/plugins/example_feed/init.php
@@ -4,7 +4,6 @@ class Example_Feed extends Plugin {
// Demonstrates how to query data from the parsed feed object (SimplePie)
// don't enable unless debugging feed through f D hotkey or manually.
- private $link;
private $host;
function about() {
@@ -15,7 +14,6 @@ class Example_Feed extends Plugin {
}
function init($host) {
- $this->link = $host->get_link();
$this->host = $host;
$host->add_hook($host::HOOK_FEED_PARSED, $this);