summaryrefslogtreecommitdiff
path: root/plugins/no_iframes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-10 20:58:40 +0300
committerAndrew Dolgov <[email protected]>2021-11-10 20:58:40 +0300
commit87a30d88d36941ad817f0d1409e2ededbe576af6 (patch)
tree0bd599c73c4bb16fab6d58b24332ac5497503e35 /plugins/no_iframes
parent9e8d69739f21e5ac85977d57a2a6c961e318c26e (diff)
plugin cleanup re: phpstan 1.0 warnings
Diffstat (limited to 'plugins/no_iframes')
-rw-r--r--plugins/no_iframes/init.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/no_iframes/init.php b/plugins/no_iframes/init.php
index a8cef74ee..3cfa15915 100644
--- a/plugins/no_iframes/init.php
+++ b/plugins/no_iframes/init.php
@@ -1,6 +1,5 @@
<?php
class No_Iframes extends Plugin {
- private $host;
function about() {
return array(null,
@@ -9,8 +8,6 @@ class No_Iframes extends Plugin {
}
function init($host) {
- $this->host = $host;
-
$host->add_hook($host::HOOK_SANITIZE, $this);
}