* Change Interval to 'Disable automatic rotation'
* Submit
* Back to edit slideshow - image interval is 5 sec.

Comments

fiishi’s picture

I saw this too. The bug is in cck_slideshow_get_settings. The code was not correctly evaluating the auto_play setting when set to 0 (Disable automatic rotation).

I changed the line from
$settings['auto_play'] = empty($settings['auto_play']) ? 5 : $settings['auto_play'];
to
$settings['auto_play'] = isset($settings['auto_play']) ? $settings['auto_play'] : 5;

This worked for me.

quicksketch’s picture

Status: Active » Fixed

Thanks fiishi! Committed.

Anonymous’s picture

Status: Fixed » Closed (fixed)