CC-2833: Use ClassLoaders for PHP Files

-autoload AtSoundcloud class
This commit is contained in:
martin 2011-09-26 15:24:48 -04:00
parent dfe43c98bb
commit b8838a5bda
4 changed files with 5 additions and 5 deletions

View file

@ -400,7 +400,7 @@ class ApiController extends Zend_Controller_Action
$tags = array_merge($hosts, array($show_name));
try {
$soundcloud = new ATSoundcloud();
$soundcloud = new Application_Model_AtSoundcloud();
$soundcloud_id = $soundcloud->uploadTrack($file->getFilePath(), $tmpTitle, $description, $tags, $show_start_time, $show_genre);
$file->setSoundCloudFileId($soundcloud_id);
break;