summaryrefslogtreecommitdiffstats
path: root/postload.php
diff options
context:
space:
mode:
authornashe <contact@nashe.fr>2015-08-11 12:04:53 +0200
committernashe <contact@nashe.fr>2015-08-11 12:04:53 +0200
commitb84b865d45b00600d982fef18991398cb655c7e9 (patch)
tree5f3d0432facd74395d029c480bb79d9e0669eb01 /postload.php
parentf2788a4ed2eae7f0056ab200b8fc787ed20a32da (diff)
downloadplanet-b84b865d45b00600d982fef18991398cb655c7e9.tar
planet-b84b865d45b00600d982fef18991398cb655c7e9.tar.gz
planet-b84b865d45b00600d982fef18991398cb655c7e9.tar.bz2
planet-b84b865d45b00600d982fef18991398cb655c7e9.tar.xz
planet-b84b865d45b00600d982fef18991398cb655c7e9.zip
Clean code
Replace dirname(__FILE__) by __DIR__.
Diffstat (limited to 'postload.php')
-rw-r--r--postload.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/postload.php b/postload.php
index 8f18678..ba37a29 100644
--- a/postload.php
+++ b/postload.php
@@ -1,5 +1,5 @@
<?php
-include_once(dirname(__FILE__).'/app/app.php');
+include_once(__DIR__.'/app/app.php');
$Planet->addPerson(
new PlanetFeed(
@@ -12,5 +12,5 @@ $Planet->addPerson(
//Load feeds
$Planet->download(1);
header("Content-type: image/png");
-readfile(dirname(__FILE__)."/custom/img/feed.png");
+readfile(__DIR__."/custom/img/feed.png");
die();