cc-4301: Fixed bug where owner_id would be null whenever show is recorded.

This commit is contained in:
Rudi Grinberg 2012-08-27 17:58:09 -04:00
parent 583d3837be
commit 7f66bdbb66
3 changed files with 19 additions and 4 deletions

View file

@ -932,8 +932,14 @@ class Application_Model_StoredFile
}
// Did all the checks for realz, now trying to copy
$audio_stor = Application_Common_OsPath::join($stor, "organize", $fileName);
$uid = Application_Model_User::getCurrentUser()->getId();
$audio_stor = Application_Common_OsPath::join($stor, "organize",
$fileName);
$user = Application_Model_User::getCurrentUser();
if (is_null($user)) {
$uid = Application_Model_User::getFirstAdminId();
} else {
$uid = $user->getId();
}
$id_file = "$audio_stor.identifier";
if (file_put_contents($id_file,$uid) === false) {
Logging::info("Could not write file to identify user: '$uid'");