summaryrefslogtreecommitdiff
path: root/plugins/example_routing/init.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/example_routing/init.php')
-rw-r--r--plugins/example_routing/init.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/example_routing/init.php b/plugins/example_routing/init.php
index 31c5b6f28..0ae446e33 100644
--- a/plugins/example_routing/init.php
+++ b/plugins/example_routing/init.php
@@ -12,7 +12,6 @@ class Example_Routing extends Plugin implements IHandler {
// Any system method may be masked by plugins. You can mask
// entire handler by supplying "*" instead of a method name.
- private $link;
private $host;
function about() {
@@ -23,7 +22,6 @@ class Example_Routing extends Plugin implements IHandler {
}
function init($host) {
- $this->link = $host->get_link();
$this->host = $host;
$host->add_handler("test", "example", $this);