Seite 2 von 2
Re: Parse error !
Verfasst: 29.11.2012 13:02
von Billy318
die hab ich im support bereich hochgeladen!
https://www.phpbb.de/support/pastebin.p ... iew&s=1164
hoffe das ist so richtig!
Re: Parse error !
Verfasst: 29.11.2012 13:04
von cpg
Moin,
Aber das ist doch nicht die overall_header.html ???
Gruß
CPG
Re: Parse error !
Verfasst: 29.11.2012 13:14
von Billy318
Das ist die tpl_art-deluxe_overall_header.html.php wo er mir den syntax error schreibt!
Re: Parse error !
Verfasst: 29.11.2012 13:20
von cpg
Die Datei
/phpBB3/styles/art_was-auch-immer-Dein-Style/template/overall_header.html benötigen wir.
In welcher Datei hast Du die Graifk ausgetauscht?
Gruß
CPG
Re: Parse error !
Verfasst: 29.11.2012 13:45
von Billy318
Re: Parse error !
Verfasst: 29.11.2012 15:08
von cpg
Moin,
in diesem Stück hast Du in der overall_header.html einen Fehler eingebaut:
Code: Alles auswählen
// Helpline messages
var help_line = {
b: '{LA_BBCODE_B_HELP}',
i: '{LA_BBCODE_I_HELP}',
u: '{LA_BBCODE_U_HELP}',
q: '{LA_BBCODE_Q_HELP}',
c: '{LA_BBCODE_C_HELP}',
l: '{LA_BBCODE_L_HELP}',
o: '{LA_BBCODE_O_HELP}',
p: '{LA_BBCODE_P_HELP}',
w: '{LA_BBCODE_W_HELP}',
a: '{LA_BBCODE_A_HELP}',
s: '{LA_BBCODE_S_HELP}',
f: '{LA_BBCODE_F_HELP}',
y: '{LA_BBCODE_Y_HELP}',
d: '{LA_BBCODE_D_HELP}'
<!-- BEGIN custom_tags -->
,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}'
<!-- END custom_tags -->
}
var panels = new Array('options-panel', 'attach-panel', 'poll-panel');
var show_panel = 'options-panel';
function change_palette()
{
dE('colour_palette');
e = document.getElementById('colour_palette');
if (e.style.display == 'block')
{
document.getElementById('bbpalette').value = '{LA_FONT_COLOR_HIDE}';
}
else
{
document.getElementById('bbpalette').value = '{LA_FONT_COLOR}';
}
}
onload_functions.push('colorPalette(\'h\', 15, 10);');
// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
<!-- ENDIF -->
Vergleiche mal Deine hier hochgeladene Datei mit dem Original.
Nachtrag: konzentriere Dich auf den Schluss dieses Teiles (Zeile 142 - 143), der muss so aussehen:
Code: Alles auswählen
<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
<!-- ENDIF -->
Das <!-- ENDIF --> hast Du irgendwie vergessen/verloren.
Gruß
CPG