PHP-Code:
<?php if ($GLOBALS['event_month'] != $this->month): ?>
<h3><?php echo $this->month; ?></h3>
<?php endif; ?>
<?php $GLOBALS['event_month'] = $this->month; ?>
<div class="event layout_upcoming<?= $this->classUpcoming ?>">
<span class="date"><?= $this->date ?></span>
<a href="<?= $this->href ?>" title="<?= $this->title ?> (<?php if ($this->day) echo $this->day . ', '; ?><?= $this->date ?><?php if ($this->time) echo ', ' . $this->time;?>)"<?= $this->target ?>><?= $this->link ?></a>
<?php if ($this->time): ?>
<span class="time">(<?= $this->time ?>)</span>
<?php endif; ?>
</div>
Das ist meine event_upcoming.html5 PHP-Datei da sehe ich das nicht aber bin mir sicher das, dass vorher nicht drin war. Muss da was geändert werden oder im welchen Template könnte das enthalten sein?
Meine event_full.html5 PHP-Datei sieht so aus:
PHP-Code:
<div class="event layout_full block<?= $this->class ?>">
<h1><?= $this->title ?></h1>
<p class="info"><time datetime="<?= $this->datetime ?>"><?= $this->date ?><?php if ($this->time): ?>, <?= $this->time ?><?php endif; ?></time></p>
<?php if ($this->recurring): ?>
<p class="recurring"><?= $this->recurring ?><?php if ($this->until) echo ' ' . $this->until; ?>.</p>
<?php endif; ?>
<?php if ($this->hasDetails): ?>
<?= $this->details ?>
<?php else: ?>
<div class="ce_text block">
<?= $this->teaser ?>
</div>
<?php endif; ?>
<?php if ($this->location): ?>
<p class="location"><?= $this->locationLabel ?>: <?= $this->location ?></p>
<?php endif; ?>
<?php if ($this->enclosure): ?>
<div class="enclosure">
<?php foreach ($this->enclosure as $enclosure): ?>
<p><img src="<?= $enclosure['icon'] ?>" width="18" height="18" alt="<?= $enclosure['mime'] ?>" class="mime_icon"> <a href="<?= $enclosure['href'] ?>" title="<?= $enclosure['title'] ?>"><?= $enclosure['link'] ?> <span class="size">(<?= $enclosure['filesize'] ?>)</span></a></p>
<?php endforeach; ?>
</div>
<?php endif; ?>
</div>
Selbst wenn ich die angegebene Zeile entferne bleibt der Satz weiterhin bestehen.
Das event_list.html5 und event_teaser.html5 enthalten die PHP-Zeile nicht.
Die jeweiligen dazugehörigen event_....xhtml Datein sind auch überprüft.
Gibt es hierzu eventuel eine lösung?