Grüzi Andi,
ist das
mx-outlineSollten dann wohl die Zeilen sein in der theme.php
function themeindex($x, $x, $x, $x, $x, $x, $x, $x, $x, $x, $x, $x, $story = array())
{
// $x bedeutet: nicht verwendet, nur zur nuke-Modulkompatibilitaet
global $theme_template;
static $viewcounter;
// nur eine Spalte zulassen :-)
$GLOBALS['storyhome_cols'] = 1;
if (!isset($viewcounter) || ($viewcounter == 2)) $viewcounter = 0;
$viewcounter++;
// mxDebugFuncVars($story);
$buttons = getThemeIndexButtons($story);
$story['buttons'] = "<table width='20' border='0' cellspacing='0' cellpadding='0'><tr><td width='1%' valign='top'>" . implode("</td>\n<td width='1%' valign='top'>", $buttons) . "</tr></table>";
$bmore = ($story['allmorelink']['bodycount']) ? "(" . $story['allmorelink']['bodycount'] . " " . _BYTESMORE . ")" : "";
$story['readmore'] = (empty($bmore)) ? "" : "<span title='" . $bmore . "'>" . $story['allmorelink']['more'] . "</span>";
$topicimage_pos = ($viewcounter == 1) ? 'left' : 'left';
$topicimage = ($GLOBALS['storyhome_cols'] == 1) ? mxCreateImage($GLOBALS['tipath'] . $story['topicimage'], _TOPIC . ": " . $story['topictext'], 0, "align=\"" . $topicimage_pos . "\" class='topicimage_" . $topicimage_pos . "'") : "";
$cattitle = (empty($story['cattitle'])) ? "" : " <span style='font-weight: normal;'>(" . $story['allmorelink']['categorie'] . ")</span>";
$authorinfo = (empty($story['informant']) || $story['informant'] == $GLOBALS['anonymous']) ? getThemeAdminname($story) : " " . $story['allmorelink']['informantlink'] . $story['informant'] . "</a>";
$story['content'] = "<a href='modules.php?name=News&new_topic=" . $story['topic'] . "'>" . $topicimage . "</a>\n" . $story['hometext'] . "\n";
$story['infoline'] = ($GLOBALS['storyhome_cols'] == 1) ? _NEWSSUBMITED . " " . $authorinfo . " " . $story['allmorelink']['datetime'] : $story['datetime'];
$story['title'] = strip_tags($story['title']) . $cattitle;
// die oben definierten Variablen in dem passenden templateteil ersetzen
$artvars = theme_define_content();
echo theme_replace_vars($theme_template[$artvars['themeindex'][$viewcounter]], $story);
return;
}