So nu aber
Ersetzte mal bitte deine komplette currentpath function inder function.php deines themes mit der hier.
<?php
function mx_theme_currentpath($spacer = ' > ')
{
global $prefix;
$maxwordlen = 18;
$link[] = '<a href="./" title="' . _HOME . '">' . _HOME . '</a>';
// Module
if (mxModuleAllowed(MX_MODULE)) {
$result = sql_query("select title, custom_title from ${prefix}_modules WHERE title='" . MX_MODULE . "'");
list($m_title, $custom_title) = sql_fetch_row($result);
if ($m_title == "blank_Home" || $m_title == "Content") {
$link[] = "";
$spacer = "";
}
else {
$m_title2 = (empty($custom_title)) ? str_replace("_", " ", $m_title) : str_replace("_", " ", $custom_title);
$m_title3 = mxCutString($m_title2, $maxwordlen, "..", "");
$link[] = "<a href=\"modules.php?name=" . urlencode($m_title) . "\" title=\"" . $m_title3 . "\">" . $m_title3 . "</a>";
}
}
// Administration
else if (defined('mxAdminFileLoaded')) {
$link[] = "<a href=\"admin.php\" title=\"" . _ADMINMENU . "\">" . _ADMINMENU . "</a>";
}
return implode($spacer, $link);
}
?>
Das bewirkt zumindest, das da nicht mehr kContent steht, sondern nur Home. Eine andere möglichkeit fällt mir da zu dieser uhrzeit auch nicht mehr ein.
Habs übrigends über die suche gefunden

THX geht dann an musicman75
BTW: Du nutzt doch das mxBoard. Da kannst du deine Boardregeln doch auch wunderbar im Admin Menü des Boards einstellen oder nicht ?