1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:25:55 +00:00

remove magpie, fix article filter plugins

This commit is contained in:
Andrew Dolgov
2012-12-24 13:45:34 +04:00
parent e935c2bc54
commit 19b3992b78
18 changed files with 108 additions and 3226 deletions

View File

@@ -57,7 +57,11 @@ class PluginHost {
}
function get_hooks($type) {
return $this->hooks[$type];
if (isset($this->hooks[$type])) {
return $this->hooks[$type];
} else {
return array();
}
}
function load($classlist) {