CC-2362:Recorded show wrong file name

Fixed bug on sending wrong file name to soundcloud
This commit is contained in:
james 2011-06-06 16:46:32 -04:00
parent ff031cde76
commit 93562d2319
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ class ApiController extends Zend_Controller_Action
try {
$soundcloud = new ATSoundcloud();
$soundcloud_id = $soundcloud->uploadTrack($file->getRealFilePath(), $file->getName(), $description, $tags, $show_start_time, $show_genre);
$soundcloud_id = $soundcloud->uploadTrack($file->getRealFilePath(), $tmpTitle, $description, $tags, $show_start_time, $show_genre);
$show_inst->setSoundCloudFileId($soundcloud_id);
break;
}