summaryrefslogtreecommitdiffstats
path: root/cron.php
blob: 688bebea9a1b44e61fa160404082372ee4c74cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
include_once(__DIR__.'/app/app.php');

//Load OPML
if (0 < $Planet->loadOpml($PlanetConfig->getOpmlFile())) {
    $Planet->download(1.0);
}

if ($PlanetConfig->getDebug()) {
    foreach ($Planet->errors as $error) {
        echo $error->toString() . "\n";
    }
}