diff options
Diffstat (limited to 'cron.php')
-rw-r--r-- | cron.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,11 +2,11 @@ include_once(__DIR__.'/app/app.php'); //Load OPML -if (0 < $Planet->loadOpml(__DIR__.'/custom/people.opml')) { +if (0 < $Planet->loadOpml($PlanetConfig->getOpmlFile())) { $Planet->download(1.0); } -if ($conf['debug'] === true) { +if ($PlanetConfig->getDebug()) { foreach ($Planet->errors as $error) { echo $error->toString() . "\n"; } |