Tag zusammen,
bei mir hat das Default-Template von slideshow2_js_standard.tpl (betrifft Version) ärger gemacht (Release 2.0.0 stable Build 4).
Mir ist aufgefallen, dass ich das schon einmal korrigiert hatte - allerdings nicht gemeldet. Der Fehler tritt auf im IE9; Opera; Safari mobile in den aktuellen Produktionsversionen.
Und führt, u.U. dazu, dass die gesamte restliche Seite nicht gerendert wird.
Ursache war die Script-Einbindung. Vorschlag für neue Version:
	HTML-Code:
	<script type="text/javascript">
<!--/*--><![CDATA[/*><!--*/
window.addEvent('domready',function()
{
	var images_<?php echo $this->id; ?> = {<?php echo $this->imgElements; ?>};
	var show_<?php echo $this->id; ?> = new Slideshow<?php echo $this->EffectType;?>('show_<?php echo $this->id; ?>', images_<?php echo $this->id; ?>, 
	{ 
		width: <?php echo $this->arrSlideshow2Size[0]; ?>,
		height: <?php echo $this->arrSlideshow2Size[1]; ?>,
		delay: <?php echo $this->rotation_interval; ?>,
		duration: <?php echo $this->effect_duration; ?>,
		<?php echo $this->EffectsExtended; ?>
		loop: <?php echo $this->play_loop; ?>,
		paused: <?php echo $this->play_paused; ?>,
		random: <?php echo $this->play_random; ?>,
		controller: <?php echo $this->controls; ?>,
		fast: <?php echo $this->controls_type; ?><?php if($this->play_image == 'true'): ?> | OnStart<?php endif; ?>,
		thumbnails: <?php echo $this->thumbnails; ?>,
		captions: <?php echo $this->captions;  ?>
	});
});
/*]]>*/-->
</script>