CC-5139 : WaveForm: Click save will cause problem when setting crossfading between track and Smart block

This commit is contained in:
Naomi 2013-05-13 18:21:24 -04:00
parent 298e5a9b77
commit d9b6a15fb6
4 changed files with 18 additions and 7 deletions

View file

@ -421,8 +421,8 @@ class PlaylistController extends Zend_Controller_Action
public function setCrossfadeAction()
{
$id1 = $this->_getParam('id1');
$id2 = $this->_getParam('id2');
$id1 = $this->_getParam('id1', null);
$id2 = $this->_getParam('id2', null);
$type = $this->_getParam('type');
$fadeIn = $this->_getParam('fadeIn', 0);
$fadeOut = $this->_getParam('fadeOut', 0);