Hallo,
ich bin gerade dabei eine Testseite in Jommla zu erstellen(mein erster Versuch).
Dazu hab ich mir ein Template gesucht und habe auf der Startseite eine Fehlermeldung mit der ich gar nichts anfangen kann.
Auf neuen Seiten die ich hinzugefügt habe, ist alles in Ordnung, keine Fehleranzeige.
Hier mal 2 Bilder die mein Problem verdeutlichen.
Bitte um Hilfe!
Mit Fehler!
Ohne Fehler!
Hier der dazugehörige Code.
ich bin gerade dabei eine Testseite in Jommla zu erstellen(mein erster Versuch).
Dazu hab ich mir ein Template gesucht und habe auf der Startseite eine Fehlermeldung mit der ich gar nichts anfangen kann.
Auf neuen Seiten die ich hinzugefügt habe, ist alles in Ordnung, keine Fehleranzeige.
Hier mal 2 Bilder die mein Problem verdeutlichen.
Bitte um Hilfe!
Mit Fehler!
Ohne Fehler!
Hier der dazugehörige Code.
PHP:
1 <?php
2 /**
3 * @package Joomla.Site
4 * @subpackage com_content
5
6 * @copyright Copyright(C)2005-2013Open Source Matters,Inc. All rights reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE.txt
8 */
9
10 defined('_JEXEC) or die;
11 ml::addlncludePath(JPATH_COMPONENT . '/helpers');
12
13 JHtml::_('behavior.caption');
14
15 ?>
16
17 <section class="blog-featured<?php echo $this->pageclass_sfx;?>">
18 <?php if ( $this->params->get('show_page_heading') != 0) : ?>
19 <hl>
20 <?php echo $this->escape($this->params->get('page_heading')); ?>
21 </hl>
22 <?php endif; ?>
23 <?php $leadingcount = 0; ?>
24 <?php if (lempty($this->lead_items)) : ?>
25 <div class="items-leading">
26 <?php foreach ($this->lead_items as &$item) : ?>
27 <article class="leading-<?php echo $leadingcount; ?X?php echo $item->state == 0 ? ' system-unpublished' : null; ?>">
28 <?php
29 $this->item = &$item;
30 echo $this->loadTemplate('item');
31 ?>
32 </article>
33 <?php
34 $leadingcount++;
35 ?>
36 <?php endforeach; ?>
37 </div>
38 <?php endif; ?>
39 <?php
40 $introcount = (count($this->intro_items));
41 $counter = 0;
42 ?>
43 <?php if (lempty($this->intro_items)) : ?>
44 <?php foreach ($this->intro_items as $key =>.&$item) : ?>
45
46 <?php
47 $key = ($key - $leadingcount) + 1;
48 $rowcount = (((int) $key - 1) % int) $this->columns) + 1;
49 $row = $counter / $this->columns;
50
51 if ($rowcount == 1) : ?>
52
53 <div class="items-row cols-<?php echo (int) $this->columns;?> <?php echo 'row-'.$ro w; ?>">
54 <?php endif; ?>
55 <article class="item column-<?php echo $rowcount;?X?php echo $item->state == 0 ? ' sy stem-unpublished"' : null; ?>">
56 <?php
$this->item = &$item;
echo $this->loadTemplate('item');
59 ?>
60 </article>
61 <?php $counter++; ?>
62 <?php if (($rowcount == $this->columns) or ($counter == $introcount)) : ?> <span class="row-separator"x/span>
64 </div>
65
66 <?php endif; ?>
67 <?php endforeach; ?>
68 <?php endif; ?>
69
70 <?php if (lempty($this->link_items)) : ?>
71 <div class="items-more">
72 <?php echo $this->loadTemplate('links'); ?>
73 </div>
74 <?php endif; ?>
75
76 <?php if ($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2 && $this->pagination->pagesTotal > 1)) : ?>
77 <div class="pagination">
78
79 <?php if ($this->params->def(1show_pagination_results', 1)) : ?>
80 <p class="counter">
81 <?php echo $this->pagination->getPagesCounter(); ?>
82 </p>
83 <?php endif; ?>
84 <?php echo $this->pagination->getPagesLinks(); ?>
85 </div>
86 <?php endif; ?>
87 </section>