Parse error: syntax error, unexpected $end in /srv/www/htdocs/drupal2/sites/all/modules/flashvideo/flashvideo-flash.tpl.php on line 18
flashvideo-flash.tpl.php <?php missing
line 6
there is
<?php if($wmode == 'window') { ?><param name="allowfullscreen" value="true" /><? } ?>
should be:
<?php if($wmode == 'window') { ?><param name="allowfullscreen" value="true" /><?php } ?>
line 14
there is
<?php if($wmode == 'window'){ ?>allowfullscreen="true"<? } ?>
should be:
<?php if($wmode == 'window'){ ?>allowfullscreen="true"<?php } ?>
Comments
Comment #1
travist commentedFixed and checked in! Thank you!!! Will be in the next release.
Comment #2
opel commentedHave you correct this or every bug in another files? :) In fact it was example, but you forgot a lots of
}in other files....Comment #3
attheshow commentedLooked for this issue in other template files. I found it in three of them and fixed it in all of them. This is in the latest dev version.