Auf meiner Seite wird das Menü 2 in der Kommentaransicht der News und erweiterten Ansicht eines News Artikels verschoben. Aber nur im ausgeloggten Zustand. Wenn man eingeloggt ist ist alles wunderbar.
Ich finde den Fehler einfach nicht.
Wäre super wenn mir jemand helfen kann.
Hier meine news.htm
<head> <link rel="alternate" type="application/rss+xml" title="News (RSS)" href="index.php?news-rss"> <link rel="alternate" type="application/atom+xml" title="News (Atom)" href="index.php?news-atom"> </head> <div> <strong>{datum}</strong> <hr style="height: 0px; border: solid #000000 0px; border-top-width: 1px; " /> </div> <div style="float:left; width:20%; text-align:center; "><div align="center">{kate}</div></div> <div style="float:left; width:80%; padding-top:25px; "> <table width="100%" border="0" align="center" cellpadding="1" cellspacing="0" class="cbg1"> <tr> <td><br><br><br><br><strong><a href="index.php?news-{id}">{title}</a></strong></td> </tr> <tr> <td class="smalfont">{_lang_from} {username} {fur}</td> </tr> </table> </div><br style="clear:both; " /> <div> <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td colspan="2"><br>{text}</td> </tr> <tr> <td width="50%"><a href="index.php?news-{id}">{kom} {_lang_comments} </a></td> <td width="50%"> <div align="right">» <a href="index.php?news-{id}">{_lang_readwholenews} </a> «</div> </td> </tr> </table> </div> <br /> <br /> {EXPLODE} <br /> <br /><center>{SITELINK}</center> {EXPLODE} <!-- News Kommentare und Mehr lesen --> <table class="border" width="100%" cellpadding="5" cellspacing="1" border="0"> <tr class="Chead"> <th height="25"><b>{NAME}</b></th> </tr> <tr> <td height="25" class="Cdark">{_lang_message}</td> </tr> <tr> <td class="Cnorm"> <div style="float:left; ">{KATE}</div> <div style="float:left; padding-left:10px; ">{TEXT}</div><br style="clear:both; " /> <p></p> <a href="index.php?news"><b>«</b> {_lang_back}</a> </td> </tr> <tr> <td height="25" class="Cmite">{_lang_commentsfor} {NAME}</td> </tr> <tr> <td class="Cnorm"> {EXPLODE} <form action="index.php?news-{NID}" method="POST"> <fieldset> <legend>{_lang_writecomment}</legend> <input type="text" name="name" value="{uname}" /> {ANTISPAM} <input type="submit" value="{_lang_enter}"><br /> <textarea style="width: 98%" cols="50" rows="2" name="txt"></textarea><br /> </fieldset> </form> <br /> <table width="100%"> {EXPLODE} <tr><td rowspan="2" width="25%">{AVATA}</td><td># <b>{ZAHL}</b> von {NAME}</td></tr> <tr><td aligne="top">{TEXT}</td></tr> {EXPLODE} </table> <br /> <a href="index.php?news"><b>«</b> {_lang_back}</a> </td> </tr> </table> {EXPLODE} <table width="100%" border="0" cellspacing="0" cellpadding="5" class="rand"> <tr class="mite"> <td width="65%"><b>{NAME}</b></td> <td width="15%">{FUER}</td> <td width="20%" align="right">{DATE}</td> </tr><tr class="norm"> <td valign="top" colspan="2">{TEXT}{MEHR}</td> <td valign="top" rowspan="2" align="center">{KATE}</td> </tr><tr class="norm"> <td valign="bottom" height="20" colspan="2" align="center"> <b>{_lang_from} {UNAME}</b> [ {KOM} <a href="index.php?news-1&nid={ID}">{_lang_comments}</a> ] </td> </tr> </table>
Hier meine news.php
<?php # Copyright by: Manuel Staechele # Support: www.ilch.de defined ('main') or die ( 'no direct access' ); $title = $allgAr['title'].' :: News'; $hmenu = 'News'; $design = new design ( $title , $hmenu ); function news_find_kat ($kat) { $katpfad = 'include/images/news/'; $katjpg = $katpfad.$kat.'.jpg'; $katgif = $katpfad.$kat.'.gif'; $katpng = $katpfad.$kat.'.png'; if ( file_exists( $katjpg ) ) { $pfadzumBild = $katjpg; } elseif ( file_exists ( $katgif ) ) { $pfadzumBild = $katgif; } elseif ( file_exists ( $katpng ) ) { $pfadzumBild = $katpng; } if ( !empty( $pfadzumBild ) ) { $kategorie = '<img style="" src="'.$pfadzumBild.'" alt="'.$kat.'">'; } else { $kategorie = '<b>'.$kat.'</b><br /><br />'; } return ( $kategorie ); } if ( !is_numeric($menu->get(1)) ) { if($menu->get(1) == 'rss' || $menu->get(1) == 'atom') { #ob_clean(); $feed_type = $menu->get(1); $abf = "SELECT MAX(news_time) AS last_update FROM prefix_news"; $erg = db_query($abf); $row = db_fetch_assoc($erg); $last_update = str_replace(' ', 'T', $row['last_update']) . 'Z'; $abf = "SELECT a.news_title as title, a.news_id as id,"; $abf .= ($feed_type == 'atom') ? 'a.news_time as datum,' : "DATE_FORMAT(a.news_time,'%a, %e %b %y %H:%i:%s') as datum,"; $abf .= "a.news_kat as kate, a.news_text as text, b.name as username FROM prefix_news as a LEFT JOIN prefix_user as b ON a.user_id = b.id WHERE a.news_recht = 0 ORDER BY news_time ASC LIMIT 15"; $erg = db_query($abf); $tpl = new tpl( 'news_'.$menu->get(1).'.htm' ); header('Content-type: application/' . $menu->get(1) . '+xml'); $tpl->set_ar_out(array('FEEDTITLE' => $allgAr['title'], 'UPDATED' => $last_update), 0); while ($row = db_fetch_assoc($erg)) { if($feed_type == 'atom') { $row['datum'] = str_replace(' ', 'T', $row['datum']) . 'Z'; } $a = explode('[PREVIEWENDE]', $row['text']); $tpl->set_ar_out(array('TITLE' => $row['title'], 'TXT' => bbcode($a[0]), 'LINK' => 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']). '/index.php?news-' . $row['id'], 'AUTHOR' => $row['username'], 'DATE' => $row['datum'] ), 1); } $tpl->out(2); exit; } else { $design->header(); $limit = $allgAr['Nlimit']; $page = ( $menu->getA(1) == 'p' ? $menu->getE(1) : 1 ); $MPL = db_make_sites ($page , "WHERE news_recht >= ".$_SESSION['authright'] , $limit , '?news' , 'news' ); $anfang = ($page - 1) * $limit; $tpl = new tpl ( 'news.htm' ); $abf = "SELECT a.news_title as title, a.news_id as id, DATE_FORMAT(a.news_time,'%d. %m. %Y') as datum, DATE_FORMAT(a.news_time,'%W') as dayofweek, a.news_kat as kate, a.news_text as text, a.news_recht as nrecht, b.name as username FROM prefix_news as a LEFT JOIN prefix_user as b ON a.user_id = b.id WHERE ".$_SESSION['authright']." <= a.news_recht OR a.news_recht = 0 ORDER BY news_time DESC LIMIT ".$anfang.",".$limit; #echo '<pre>'.$abf.'</pre>'; $erg = db_query($abf); while ($row = db_fetch_assoc($erg)) { $abf1 = "SELECT * FROM prefix_grundrechte where id = ".$row['nrecht']." "; $erg1 = db_query($abf1); $row1 = db_fetch_object($erg1); $k0m = db_query("SELECT COUNT(ID) FROM `prefix_koms` WHERE uid = ".$row['id']." AND cat = 'NEWS'"); $row['kom'] = db_result($k0m,0); $row['fur'] = 'Sichtbar ab '.$row1->name; $row['kate'] = news_find_kat($row['kate']); $row['datum'] = $lang[$row['dayofweek']].' '.$row['datum']; if ( strpos ( $row['text'] , '[PREVIEWENDE]' ) !== FALSE ) { $a = explode('[PREVIEWENDE]' , $row['text']); $row['text'] = $a[0]; } $row['text'] = bbcode($row['text']); $tpl->set_ar_out($row,0); } $tpl->set_out('SITELINK', $MPL,1); unset($tpl); } } else { $design->header(); $nid = escape($menu->get(1), 'integer'); $row = db_fetch_object(db_query("SELECT * FROM `prefix_news` WHERE news_id = '".$nid."'")); if ( has_right(array($row->news_recht)) ) { $komsOK = true; if ( $allgAr['Ngkoms'] == 0 ) { if ( loggedin() ) { $komsOK = true; } else { $komsOK = false; } } if ( $allgAr['Nukoms'] == 0 ) { $komsOK = false; } # kommentar add if ( (loggedin() OR chk_antispam ('newskom')) AND $komsOK AND !empty($_POST['name']) AND !empty($_POST['txt']) ) { $_POST['txt'] = escape($_POST['txt'],'string'); $_POST['name'] = escape($_POST['name'],'string'); db_query("INSERT INTO `prefix_koms` VALUES ('',".$nid.",'NEWS','".$_POST['name']."','".$_POST['txt']."')"); } # kommentar add # kommentar loeschen if ($menu->getA(2) == 'd' AND is_numeric($menu->getE(2)) AND has_right(-7, 'news')) { $kommentar_id = escape($menu->getE(2),'integer'); db_query("DELETE FROM prefix_koms WHERE uid = ".$nid." AND cat = 'NEWS' AND id = ".$kommentar_id); } # kommentar loeschen $kategorie = news_find_kat($row->news_kat); $textToShow = bbcode($row->news_text); $textToShow = str_replace('[PREVIEWENDE]','',$textToShow); if ( !empty($such) ) { $textToShow = markword($textToShow,$such); } $tpl = new tpl ( 'news.htm' ); $ar = array ( 'TEXT' => $textToShow, 'KATE' => $kategorie, 'NID' => $nid, 'uname' => $_SESSION['authname'], 'ANTISPAM' => (loggedin()?'':get_antispam ('newskom', 0)), 'NAME' => $row->news_title ); $tpl->set_ar_out($ar, 2 ); if ($komsOK) { $tpl->set_ar_out ( array ( 'NAME' => $row->news_title , 'NID' => $nid ), 3 ); } $erg1 = db_query("SELECT text, name, id FROM `prefix_koms` WHERE uid = ".$nid." AND cat = 'NEWS' ORDER BY id DESC"); $ergAnz1 = db_num_rows($erg1); if ( $ergAnz1 == 0 ) { echo '<b>'.$lang['nocomments'].'</b>'; } else { $zahl = $ergAnz1; while ($row1 = db_fetch_assoc($erg1)) { $row1['text'] = bbcode(trim($row1['text'])); if (has_right(-7, 'news')) { $row1['text'] .= '<a href="?news-'.$nid.'-d'.$row1['id'].'"><img src="include/images/icons/del.gif" alt="löschen" border="0" title="löschen" /></a>'; } $abf2 = 'SELECT id, name, avatar FROM prefix_user WHERE name = "'.$row1['name'].'" '; $erg2 = db_query($abf2); $row2 = db_fetch_object($erg2); if ( file_exists($row2->avatar) ) { $ava = '<img src="'.$row2->avatar.'" border="0" width="75" height="75">'; }elseif ($row2->id != 0){ $ava = '<img src="ich bin ein user ohne avatar" border="0" width="75" height="75">'; }elseif ($row2->id == 0){ $ava = '<img src="ich bin ein gast border="0" width="75" height="75">'; } $tpl->set_ar_out( array('NAME' => $row1['name'], 'TEXT' => $row1['text'], 'AVATA' => $ava, 'ZAHL' => $zahl ) , 4 ); $zahl--; } } } $tpl->out(5); } $design->footer(); ?>
Und meine Design index.htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Language" content="de"> <title>{TITLE}</title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <meta name="Robots" content="INDEX,FOLLOW"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="Pragma" content="no-cache"> <meta name="Robots" content="archive"> <link rel="stylesheet" type="text/css" href="include/designs/ilch_gs_template147/style.css"> <style type="text/css"> #droenudiv{ position:absolute; font:normal 10px Verdana; z-index:100; } #droenudiv a{ border-right:1px #000 solid; border-bottom:1px #000 solid; border-top:1px #282828 solid; border-left:1px #282828 solid; height:20px; line-height:20px; width:120px; padding-left:2px; background-color:#16171B; color: #CFCFCF; font-size: 11px; font-family:verdana; font-weight: normal; float:left; text-align:left; text-decoration: none; } #droenudiv a:hover{ /*hover background color*/ border-right:2px #8B0003 solid; color: #8B0003; font-size: 11px; font-family:verdana; font-weight: normal; background-color: #16171B; width:120px; } </style> <script type="text/javascript"> //Contents for menu 1 var menu1=new Array() menu1[0]='<a href="index.php">:: Home</a>' menu1[1]='<a href="index.php?news">:: News</a>' menu1[2]='<a href="index.php?forum">:: Forum</a>' //Contents for menu 2 var menu2=new Array() menu2[0]='<a href="index.php?user">:: Mitglieder</a>' menu2[1]='<a href="index.php?gbook">:: Gästebuch</a>' //Contents for menu 3 var menu3=new Array() menu3[0]='<a href="index.php?downloads">:: Downloads</a>' menu3[1]='<a href="index.php?gallery">:: Gallery</a>' menu3[2]='<a href="index.php?links">:: Links</a>' menu3[3]='<a href="index.php?awards">:: Awards</a>' //Contents for menu 4 var menu4=new Array() menu4[0]='<a href="index.php?history">:: History</a>' menu4[1]='<a href="index.php?rules">:: Regeln</a>' menu4[2]='<a href="index.php?teams">:: Teams</a>' menu4[3]='<a href="index.php?wars">:: Wars</a>' menu4[4]='<a href="index.php?joinus">:: Joinus</a>' menu4[5]='<a href="index.php?fightus">:: Fightus</a>' //Contents for menu 5 var menu5=new Array() menu5[0]='<a href="index.php?contact">:: Kontakt</a>' menu5[1]='<a href="index.php?impressum">:: Impressum</a>' var menuwidth='' //menu width var menubgcolor='' //menu bgcolor var disappeardelay=250 //menu disappear speed onMouseout (in miliseconds) var hidemenu_onclick="yes" //hide menu when user clicks within menu? /////No further editting needed var ie4=document.all var ns6=document.getElementById&&!document.all if (ie4||ns6) document.write('<div id="droenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>') function getposOffset(what, offsettype){ var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop; var parentEl=what.offsetParent; while (parentEl!=null){ totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop; parentEl=parentEl.offsetParent; } return totaloffset; } function showhide(obj, e, visible, hidden, menuwidth){ if (ie4||ns6) droenuobj.style.left=droenuobj.style.top="-500px" if (menuwidth!=""){ droenuobj.widthobj=droenuobj.style droenuobj.widthobj.width=menuwidth } if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover") obj.visibility=visible else if (e.type=="click") obj.visibility=hidden } function iecompattest(){ return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body } function clearbrowseredge(obj, whichedge){ var edgeoffset=0 if (whichedge=="rightedge"){ var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15 droenuobj.contentmeasure=droenuobj.offsetWidth if (windowedge-droenuobj.x < droenuobj.contentmeasure) edgeoffset=droenuobj.contentmeasure-obj.offsetWidth } else{ var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18 droenuobj.contentmeasure=droenuobj.offsetHeight if (windowedge-droenuobj.y < droenuobj.contentmeasure){ //move up? edgeoffset=droenuobj.contentmeasure+obj.offsetHeight if ((droenuobj.y-topedge)<droenuobj.contentmeasure) //up no good either? edgeoffset=droenuobj.y+obj.offsetHeight-topedge } } return edgeoffset } function populatemenu(what){ if (ie4||ns6) droenuobj.innerHTML=what.join("") } function dropdownmenu(obj, e, menucontents, menuwidth){ if (window.event) event.cancelBubble=true else if (e.stopPropagation) e.stopPropagation() clearhidemenu() droenuobj=document.getElementById? document.getElementById("droenudiv") : droenudiv populatemenu(menucontents) if (ie4||ns6){ showhide(droenuobj.style, e, "visible", "hidden", menuwidth) droenuobj.x=getposOffset(obj, "left") droenuobj.y=getposOffset(obj, "top") droenuobj.style.left=droenuobj.x-clearbrowseredge(obj, "rightedge")+"px" droenuobj.style.top=droenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px" } return clickreturnvalue() } function clickreturnvalue(){ if (ie4||ns6) return false else return true } function contains_ns6(a, b) { while (b.parentNode) if ((b = b.parentNode) == a) return true; return false; } function dynamichide(e){ if (ie4&&!droenuobj.contains(e.toElement)) delayhidemenu() else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget)) delayhidemenu() } function hidemenu(e){ if (typeof droenuobj!="undefined"){ if (ie4||ns6) droenuobj.style.visibility="hidden" } } function delayhidemenu(){ if (ie4||ns6) delayhide=setTimeout("hidemenu()",disappeardelay) } function clearhidemenu(){ if (typeof delayhide!="undefined") clearTimeout(delayhide) } if (hidemenu_onclick=="yes") document.onclick=hidemenu </script> </head> <body> <table class="maintable" cellpadding="0" cellspacing="0"> <tr> <td valign="top" style="width:1000px; height:290px;background:url(include/designs/ilch_gs_template147/images/header.jpg) no-repeat;"><br />{_boxes_login}</td> </tr> </table> <table class="maintable" cellpadding="0" cellspacing="0"> <tr> <td style="width:1000px; height:50px;background:url(include/designs/ilch_gs_template147/images/menu.jpg) no-repeat;"> <div id="column1"> <h2>Lastnews</h2> <div style="padding-left:2px; padding-top:4px;">{_boxes_lastnews}</div> <br /> </div> <div id="column2"> <h2>Lastforum</h2> <div style="padding-left:2px; padding-top:4px;">{_boxes_lastforum}</div> <br /> </div> <div id="column3"> <h2>Imperiale Gilde</h2><br> <img border="0" alt="" src="include/designs/ilch_gs_template147/images/logo.png" /><br /> <br /> </div> <div id="column4"> <h2>Server: Pius Dea</h2><br> <div id="swtorServerRooster"></div> <script type="text/javascript" src="http://my.buffed.de/js/buffed-swtor-syndication.js"></script> <script type="text/javascript"> swtorServer._set('hideOptions', true); swtorServer._set('name','Pius Dea'); swtorServerRooster(); </script> <!-- <img border="0" alt="" src="include/designs/ilch_gs_template147/images/imperium.png" /><br /> --> <br /> </div> </td> </tr> </table> <table class="maintable" cellpadding="0" cellspacing="0"> <tr> <!--platzhalter--> <td style="width:9px"><img src="include/designs/ilch_gs_template147/images/blank.gif" width="9" height="2" alt="blank" border="0" /></td> <!--/platzhalter--> <!--navi01--> <td align="left" valign="top"> <table cellspacing="0" cellpadding="0"> {_list_menunr1@ <tr> <td width="180" height="43" background="include/designs/ilch_gs_template147/images/navtop.jpg"> <table width="180"> <tr> <td width="180" class="navtop">%1</td> </tr> </table> </td> </tr> <tr> <td style="width:180px; background:url(include/designs/ilch_gs_template147/images/navbox_bg.jpg) repeat-y;" > <table width="180" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="4" align="center" ></td> <td width="168" align="center" class="navi_re"><div id="menu">%2</div></td> <td width="4" align="center" ></td> </tr> </table> </td> </tr> <tr> <td style="width:180px; height:26px; background:url(include/designs/ilch_gs_template147/images/navfooter.jpg) no-repeat;" ></td> } </tr> </table> </td> <!--content--> <td valign="top" style="width:100%"> <table cellspacing="0" cellpadding="0"> <tr> <td><img border="0" alt="" height="19" width="21" src="include/designs/ilch_gs_template147/images/001.jpg" /></td> <td style="background:url(include/designs/ilch_gs_template147/images/002.jpg); width:100%; height:19px"><img border="0" width="1" height="19" alt="" src="include/designs/ilch_gs_template147/images/blank.gif" /></td> <td><img border="0" alt="" height="19" width="18" src="include/designs/ilch_gs_template147/images/003.jpg" /></td> </tr> </table> <table border="0" cellspacing="0" cellpadding="0" width="100%"> <tr> <td style="background:url(include/designs/ilch_gs_template147/images/004.jpg)"><img border="0" width="4" height="1" alt="" src="include/designs/ilch_gs_template147/images/blank.gif" /></td> <td valign="top" style="width:100%;background:#1B1B1B;padding:5px;" class="Callg"><font class="smalfont"><b> » </b>{HMENU}</font><br /><br />{EXPLODE}</td> <td style="background:url(include/designs/ilch_gs_template147/images/006.jpg)"><img border="0" width="5" height="1" alt="" src="include/designs/ilch_gs_template147/images/blank.gif" /></td> </tr> </table> <table cellspacing="0" cellpadding="0"> <tr> <td><img border="0" alt="" height="22" width="23" src="include/designs/ilch_gs_template147/images/007.jpg" /></td> <td style="background:url(include/designs/ilch_gs_template147/images/008.jpg); width:100%; height:22px"><img border="0" width="1" height="22" alt="" src="include/designs/ilch_gs_template147/images/blank.gif" /></td> <td><img border="0" alt="" height="22" width="22" src="include/designs/ilch_gs_template147/images/009.jpg" /></td> </tr> </table> </td> <!--navi02--> <td align="left" valign="top"> <table width="200" border="0" cellspacing="0" cellpadding="0"> {_list_menunr2@ <tr> <td width="200" height="43" background="include/designs/ilch_gs_template147/images/navtop_re.jpg"> <table width="200"> <tr> <td width="200" class="navtop_re">%1</td> </tr> </table> </td> </tr> <tr> <td> <table style="width:200px; background:url(include/designs/ilch_gs_template147/images/navbox_bg_re.jpg) repeat-y;" cellspacing="0" cellpadding="0"> <tr> <td width="4" align="center" ></td> <td width="192" align="center" class="navi_re"><div id="menu_re">%2</div></td> <td width="4" align="center" ></td> </tr> </table> </td> </tr> <tr> <td style="width:200px; height:24px; background:url(include/designs/ilch_gs_template147/images/navfooter_re.jpg) no-repeat;" ></td> } </tr> </table> </td> <!--Platzhalter--> <td style="width:9px"><img src="include/designs/ilch_gs_template147/images/blank.gif" width="9" height="1" alt="" /></td> <!--/Platzhalter--> </tr> </table> <div id="footer"> <div id="footer_inner"> <div id="column1"> <h2></h2> <div style="padding-left:2px; padding-top:4px;"></div> <br /> </div> <div id="column2"> <h2></h2> <div style="padding-left:2px; padding-top:4px;"></div> <br /> </div> <div id="column3"> <h2>Imperiale Gilde</h2><br> <img border="0" alt="" src="include/designs/ilch_gs_template147/images/imperium.png" /><br /> <br /> </div> <div id="column4"> <h2>Server: Pius Dea</h2><br> <img border="0" alt="" src="include/designs/ilch_gs_template147/images/logo.png" /><br /> <br /> Script Copyright by <a href="http://www.ilch.de/" target="_blank">ilch.de</a> <br /> made by <a href="http://psd-resources.de" target="_blank">psd-resources.de</a> <br /> <br /> </div> <div class="clr"></div> </div> </div> </body> </html> {_list_hmenupoint@<li><a target="%1" class="box" href="%2">%3</a>|</li>|<br />|</ul></li>} {_list_hmenubegi@<ul>} {_list_hmenuende@</ul>} {_list_vmenupoint@<li><a target="%1" class="box" href="%2">%3</a>|</li>|<br /><ul>|</ul></li>} {_list_vmenubegi@<ul>} {_list_vmenuende@</ul>}
direkter Linkt zur fehlerhaften Kommentaranzeige externer Link
Danke vorab schon mal.
betroffene Homepage: externer Link