From c28025ecfbeb3781e2b7e0e938566655d5f95858 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 27 Aug 2012 16:49:45 -0400 Subject: [PATCH] hotfix for bad class name --- airtime_mvc/application/models/StoredFile.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/models/StoredFile.php b/airtime_mvc/application/models/StoredFile.php index c3ec5daca..367831c3d 100644 --- a/airtime_mvc/application/models/StoredFile.php +++ b/airtime_mvc/application/models/StoredFile.php @@ -382,7 +382,7 @@ class Application_Model_StoredFile if ($deleteFromPlaylist) { Application_Model_Playlist::DeleteFileFromAllPlaylists($this->getId()); } - // set file_exists falg to false + // set file_exists flag to false $this->_file->setDbFileExists(false); $this->_file->save(); } @@ -415,7 +415,7 @@ class Application_Model_StoredFile _file->getDbDirectory()); $directory = $music_dir->getDirectory(); $filepath = $this->_file->getDbFilepath(); - return OsPath::join($directory, $filepath); + return Application_Common_OsPath::join($directory, $filepath); } /**