check there is an array of notices to display, before doing a foreach()
This commit is contained in:
parent
2d25f288a7
commit
c3110ec8ac
|
@ -176,8 +176,10 @@ class Rss10Action extends Action
|
|||
$this->showChannel();
|
||||
$this->showImage();
|
||||
|
||||
foreach ($this->notices as $n) {
|
||||
$this->showItem($n);
|
||||
if (count($this->notices)) {
|
||||
foreach ($this->notices as $n) {
|
||||
$this->showItem($n);
|
||||
}
|
||||
}
|
||||
|
||||
$this->showCreators();
|
||||
|
@ -203,8 +205,10 @@ class Rss10Action extends Action
|
|||
$this->elementStart('items');
|
||||
$this->elementStart('rdf:Seq');
|
||||
|
||||
foreach ($this->notices as $notice) {
|
||||
$this->element('rdf:li', array('rdf:resource' => $notice->uri));
|
||||
if (count($this->notices)) {
|
||||
foreach ($this->notices as $notice) {
|
||||
$this->element('rdf:li', array('rdf:resource' => $notice->uri));
|
||||
}
|
||||
}
|
||||
|
||||
$this->elementEnd('rdf:Seq');
|
||||
|
|
Loading…
Reference in New Issue
Block a user