summaryrefslogtreecommitdiffstats
path: root/common/cron.php
diff options
context:
space:
mode:
Diffstat (limited to 'common/cron.php')
-rw-r--r--common/cron.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/common/cron.php b/common/cron.php
index 77d9d8f..9cc56a6 100644
--- a/common/cron.php
+++ b/common/cron.php
@@ -1,9 +1,13 @@
<?php
-include_once(dirname(__FILE__).'/app/app.php');
+include_once(__DIR__.'/app/app.php');
//Load OPML
-if (0 < $Planet->loadOpml(dirname(__FILE__).'/custom/people.opml')) {
+if (0 < $Planet->loadOpml(__DIR__.'/custom/people.opml')) {
$Planet->download(1.0);
}
-var_dump($Planet->errors);
+if ($conf['debug'] === true) {
+ foreach ($Planet->errors as $error) {
+ echo $error->toString() . "\n";
+ }
+} \ No newline at end of file