]> git.wh0rd.org - tt-rss.git/blobdiff - plugins/af_comics/filters/af_comics_darklegacy.php
plugins: remove obsolete plugin_data/stored stuff
[tt-rss.git] / plugins / af_comics / filters / af_comics_darklegacy.php
index d87a3da22a2dfa081b6cb987ce61ab925b3d9827..c03919b1d896e5a603ec7506345726d15cabe7e8 100644 (file)
@@ -9,9 +9,6 @@ class Af_Comics_DarkLegacy extends Af_ComicFilter {
                $owner_uid = $article["owner_uid"];
 
                if (strpos($article["guid"], "darklegacycomics.com") !== FALSE) {
-                        if (strpos($article["plugin_data"], "af_comics,$owner_uid:") === FALSE) {
-
-                                print "DLC!" . $article["link"] . "\n";
 
                                $res = fetch_file_contents($article["link"], false, false, false,
                                         false, false, 0,
@@ -34,12 +31,8 @@ class Af_Comics_DarkLegacy extends Af_ComicFilter {
                                        if ($basenode) {
 
                                                $article["content"] = $doc->saveXML($basenode);
-                                               $article["plugin_data"] = "af_comics,$owner_uid:" . $article["plugin_data"];
                                        }
                                }
-                       } else if (isset($article["stored"]["content"])) {
-                               $article["content"] = $article["stored"]["content"];
-                       }
 
                         return true;
                }