summaryrefslogtreecommitdiffstats
path: root/common/postload.php
diff options
context:
space:
mode:
authorDamien Lallement <dams@mageia.org>2012-08-13 10:45:23 +0000
committerDamien Lallement <dams@mageia.org>2012-08-13 10:45:23 +0000
commitff32e499745367b816d10f25e63ff3328214c32f (patch)
tree238d19398f5951d69d32c8ed9a460f5193446981 /common/postload.php
parent5bed2fb79d7b554dd90d2eb58422cfa649aebe08 (diff)
downloadplanet-ff32e499745367b816d10f25e63ff3328214c32f.tar
planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.gz
planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.bz2
planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.xz
planet-ff32e499745367b816d10f25e63ff3328214c32f.zip
- Import moonmoon
- Create repo per langs
Diffstat (limited to 'common/postload.php')
-rw-r--r--common/postload.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/common/postload.php b/common/postload.php
new file mode 100644
index 0000000..8f18678
--- /dev/null
+++ b/common/postload.php
@@ -0,0 +1,16 @@
+<?php
+include_once(dirname(__FILE__).'/app/app.php');
+
+$Planet->addPerson(
+ new PlanetFeed(
+ '',
+ htmlspecialchars_decode($_GET['url'], ENT_QUOTES),
+ ''
+ )
+);
+
+//Load feeds
+$Planet->download(1);
+header("Content-type: image/png");
+readfile(dirname(__FILE__)."/custom/img/feed.png");
+die();