Items' id must be different for feeds to be valid

This commit is contained in:
Luc Didry
2015-06-12 23:06:50 +02:00
parent 3cde840e2b
commit 0833f41189
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ class AtomController extends AbstractController
$feed->add(
$incident->name,
Setting::get('app_name'),
$this->canonicalizeUrl(Setting::get('app_domain')),
$this->canonicalizeUrl(Setting::get('app_domain')).'#'.$incident->id,
$incident->created_at->toAtomString(),
$incident->message
);