23.07.2012, 14:54
Ich weiß altes Thema hier aber trotzdem nochmal ne Frage
1. Danke erstmal an dich Molt ich verwende sehr viele Tools von dir und durch sie wird TWLan erst richtig interessant.
2. Nun aber mein Problem ... ich habe alles nach Anleitung installiert und danach TWLan gestartet. Gehe ich jedoch nun auf den Versammlungsplatz erscheint folgende Meldung:
Parse error: parse error, unexpected '<' in C:\Users\Nickel\Documents\DSLan_1.4\htdocs\templates_c\%%75^75F^75F67C6F%%game_place_command.tpl.php on line 80
Hier der Auszug des zugehörigen PHP Codes (game_place_command.tpl.php) von Zeile 62-96
1. Danke erstmal an dich Molt ich verwende sehr viele Tools von dir und durch sie wird TWLan erst richtig interessant.
2. Nun aber mein Problem ... ich habe alles nach Anleitung installiert und danach TWLan gestartet. Gehe ich jedoch nun auf den Versammlungsplatz erscheint folgende Meldung:
Parse error: parse error, unexpected '<' in C:\Users\Nickel\Documents\DSLan_1.4\htdocs\templates_c\%%75^75F^75F67C6F%%game_place_command.tpl.php on line 80
Hier der Auszug des zugehörigen PHP Codes (game_place_command.tpl.php) von Zeile 62-96
PHP Code:
{php}
if($_GET['molt']) echo '<script type="text/javascript">
document.getElementsByName("attack")[0].click();
</script>';
{/php}
<h3>{$lang->get("movements")}</h3>
{* Eigene losgeschickte Angriffe *}
{if count($my_movements)>0}
<table class="vis">
<tr>
<th width="250">{$lang->get("own_troops")}</th>
<th width="160">{$lang->get("arrival")}</th>
<th width="80">{$lang->get("arrival_in")}</th>
</tr>
{foreach from=$my_movements item=array}
<tr>
<td>
<a href="game.php?village={$village.id}&screen=info_command&id={$array.id}&type=own">
<img src="graphic/command/{$array.type}.png"> {$array.message}
</a>
</td>
<td>{$array.end_time|format_date}</td>
{if $array.arrival_in<0}
<td>{$array.arrival_in|format_time}</td>
{else}
<td><span class="timer">{$array.arrival_in|format_time}</span></td>
{/if}
{if $array.can_cancel}
<td><a href="game.php?village={$village.id}&screen=place&action=cancel&id={$array.id}&h={$hkey}">{$lang->get("doCancel")}</a></td>
{/if}
</tr>
{/foreach}
</table>
{/if}