hotfix for bad class name

This commit is contained in:
Rudi Grinberg 2012-08-27 16:49:45 -04:00
parent ed6489cd8d
commit c28025ecfb
1 changed files with 2 additions and 2 deletions

View File

@ -382,7 +382,7 @@ class Application_Model_StoredFile
if ($deleteFromPlaylist) { if ($deleteFromPlaylist) {
Application_Model_Playlist::DeleteFileFromAllPlaylists($this->getId()); Application_Model_Playlist::DeleteFileFromAllPlaylists($this->getId());
} }
// set file_exists falg to false // set file_exists flag to false
$this->_file->setDbFileExists(false); $this->_file->setDbFileExists(false);
$this->_file->save(); $this->_file->save();
} }
@ -415,7 +415,7 @@ class Application_Model_StoredFile
_file->getDbDirectory()); _file->getDbDirectory());
$directory = $music_dir->getDirectory(); $directory = $music_dir->getDirectory();
$filepath = $this->_file->getDbFilepath(); $filepath = $this->_file->getDbFilepath();
return OsPath::join($directory, $filepath); return Application_Common_OsPath::join($directory, $filepath);
} }
/** /**