Fehler nach Code einbinden (Bin ich Blind?)

Hier mal der Code meiner Theme.php

[code]


**** Layout and CSS by http://oyabunstyle.de ****


–>



";
}

// [layout]

$layout = “_default”;

$HEADER = "

{LINKSTYLE=navigation} {SITELINKS_ALT=no_icons}
{CUSTOM=clock} | ".GC_USERS_ONLINE." Mitglieder online | ".GC_USERS." Mitglieder sind registriert
{SETSTYLE=menu} {MENU=1} {SETSTYLE=blank} {MENU=2}
{SETSTYLE=post} {MENU=3} ";

$FOOTER = "
{MENU=4}





{SETSTYLE=userpanel}
{PLUGIN=login_menu}
{SETSTYLE=menu}
{MENU=5}
{SITEDISCLAIMER}
";

$NEWSSTYLE = “


{NEWSTITLE}

Posted at {NEWSDATE=short}


By {NEWSAUTHOR} in {NEWSCATEGORY}



{NEWSBODY}



{NEWSCOMMENTS}


”;
define(“ICONSTYLE”, “”);
define(“COMMENTLINK”, LAN_THEME_3);
define(“COMMENTOFFSTRING”, “”);

// [tablestyle]

function tablestyle($caption, $text)
{
global $style;

switch ($style) {
case “menu”:
echo “


$caption



$text



”;
break;
case "userpanel":
echo "
	<div id='userpanel'>
    	<div class='text'>
        	$text
        </div>
    </div>
";
break;

case "blank":
echo "
		<div class='center'>
        	$text
		</div>
";
break;

case "post":
echo "
        <div class='contentheader title'>
            $caption
        </div>
        <div class='text clearfix'>
            $text
        </div>

";
break;

default:
echo "
<table width='100%' border='1'>
	<tr>
		<td>
			$caption
		</td>
	</tr>
	<tr>
		<td>
			$text
		</td>
	</tr>
</table>
";

}

}

?>[/code]

Diesen Code möchte ich einbinden

Ich habe ihn so eingesetzt

[code]


{SITEDISCLAIMER}


[/code]

Aber außer ne Fehlermeldung bekomme ich nicht und ich habe Null Plan wieso >.<

Welche Fehlermeldung? Gibts nen Link?

Jo Seite ist hier ffxiv-unbreakable.de/e107_pl … nu/new.php

Fehler

Versuch mal

Die Anführungsstriche müssen escaped werden, wenn du String damit begrenzt. :slight_smile:

Dank dir Mgier, nun gehts xD