CC-3975: Media Library: Try to download files from watched folder, the filename will be "true"

-added comment
This commit is contained in:
denise 2012-06-27 15:13:03 -04:00
parent 1300593e8b
commit 8141dec3b5
1 changed files with 3 additions and 0 deletions

View File

@ -131,6 +131,9 @@ class ApiController extends Zend_Controller_Action
$full_path = $media->getPropelOrm()->getDbFilepath();
$file_base_name = strrchr($full_path, '/');
/* If $full_path does not contain a '/', strrchr will return false,
* in which case we can use $full_path as the base name.
*/
if (!$file_base_name) {
$file_base_name = $full_path;
}