Hallo zusammen.

Bei einer Event-Liste habe ich einen Bug festgestellt (betrifft 2.9.2):
Bei scheinbar zufälligen Daten (Mehrzahl von Datum!) wird das Datum nicht mehr angegeben. Ändert man das Datum, erscheint es... komisch, is aber so...

Ich glaube es ist ein Bug, kann mir sonst nichts vorstellen, da es wirklich nur sehr selten auftaucht, und sonst immer ein Datum angezeigt wird, auch in verschiedenen Datumsanfang /-ende und Zeitangaben-Kombinationen...
Ideen?


Nur um sicher zu gehen, hier mein Template, ob sich vielleicht nicht hier der Fehler versteckt:

PHP-Code:
<?php if ($this->header): ?>
<div class="header<?php echo $this->classHeader?>">
<h5><?php if ($this->startDate): ?><?php echo " ".date("d.m.Y"$this->start); ?><?php endif; ?><?php if ($this->endDate): ?><?php echo " "." – ".date("d.m.Y"$this->end); ?><?php endif; ?><?php if ($this->startTime): ?><?php echo ", ".date("H:i"$this->startTime); ?><?php endif; ?><?php if ($this->endTime != $this->startTime): ?><?php echo " "." – ".date("H:i"$this->endTime); ?><?php endif; ?></h5>
</div>

<?php endif; ?>
<div class="event<?php echo $this->classList?>">
<?php if ($this->details): ?>
<h4><?php echo $this->title?> </h4>
<?php else: ?>
<h4><?php echo $this->title?></h4>
<?php endif; ?>

<!-- Zeitspanne anzeigen:
<?php if ($this->time || $this->span): ?>
<p class="time"><?php echo $this->time $this->span?></p>
<?php endif; ?>
-->

<p class="teaser"><?php echo $this->teaser?></p>
<?php if ($this->details): ?>
<p class="more"><a href="<?php echo $this->link?>" title="<?php echo $this->readMore?>"<?php echo $this->target?>><?php echo $this->more?> <span class="invisible"><?php echo $this->title?></span></a></p>
<?php endif; ?>
</div>