summaryrefslogtreecommitdiffstats
path: root/postload.php
blob: ba37a296538695d8682a0478737fd77c78f5b111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
include_once(__DIR__.'/app/app.php');

$Planet->addPerson(
    new PlanetFeed(
        '',
        htmlspecialchars_decode($_GET['url'], ENT_QUOTES),
        ''
    )
);

//Load feeds
$Planet->download(1);
header("Content-type: image/png");
readfile(__DIR__."/custom/img/feed.png");
die();