MyBB.de Forum
Probleme mit dem Impressum - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.6.x (https://www.mybb.de/forum/forum-58.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-59.html)
+---- Thema: Probleme mit dem Impressum (/thread-25004.html)



Probleme mit dem Impressum - Barney - 20.02.2012

Hallo immer wenn ich mein Impressum einfüge und Speichere wird es gekürzt.

hier ist mein impressum:

Code:
<html>
<head>
<title>{$settings['bbname']} - Impressum</title>
{$headerinclude}
</head>
<body>
{$header}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Impressum</strong></td>
</tr>
<tr>
<td class="trow1" align="center">
[...]
</td>
</tr>
</table>
{$footer}
</body>
</html>


Am ende wenn ich das Template speichere bekome ich das raus:
Code:
<html>
<head>
<title>{$settings['bbname']} - Impressum</title>
{$headerinclude}
</head>
<body>
{$header}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Impressum</strong></td>
</tr>
<tr>
<td class="trow1" align="center">
<p>Copyright</p></p>
<p>&nbsp;</p>

und alles andere ist weg.

Ich versuche seit 3h mein Impressum aufzubauen. Jedoch klappt es irgendwie nicht.


Im impressum.php kann man dies finden:
Code:
<?php
define("IN_MYBB", 1);
//define("NO_ONLINE", 1); // Wenn Seite nicht in Wer ist online-Liste auftauchen soll

require("global.php");

add_breadcrumb("Impressum");

eval("\$impressum = \"".$templates->get("impressum")."\";"); // Hier wird das erstellte Template geladen
output_page($impressum);
?>



RE: Probleme mit dem Impressum - StefanT - 20.02.2012

Probiere bitte mal dies: https://www.mybb.de/forum/thread-21414-post-148368.html#pid148368


RE: Probleme mit dem Impressum - Barney - 20.02.2012

Vielen Dank. Hat geklappt.