Merge pull request #419 from annando/bad-retriever

Retriever is deactivated, see issue 3482
pull/421/head
Tobias Diekershoff 2017-08-19 12:17:00 +02:00 committed by GitHub
commit 403114fd35
3 changed files with 11 additions and 1 deletions

View File

@ -71,9 +71,13 @@ function leistungsschutzrecht_fetchsites() {
$sitelist = fetch_url($url);
$siteurls = explode(',', $sitelist);
$whitelist = array('tagesschau.de', 'heute.de', 'wdr.de');
$sites = array();
foreach ($siteurls AS $site) {
$sites[$site] = $site;
if (!in_array($site, $whitelist)) {
$sites[$site] = $site;
}
}
// I would prefer parsing the list from the original site, but I haven't found a list.

5
retriever/README Normal file
View File

@ -0,0 +1,5 @@
"retriever" is deactivated since it has side effects for all received posts.
It was created in a time when the option 'Fetch further information for feeds' didn't exist.
To activate it, please go to the list of your contacts, edit the contact and then select between the different options.

View File

@ -4,6 +4,7 @@
* Description: Follow the permalink of RSS/Atom feed items and replace the summary with the full content.
* Version: 1.0
* Author: Matthew Exon <http://mat.exon.name>
* Status: Unsupported
*/
require_once('include/html2bbcode.php');