CC-3230: Show appropriate error message if disk is full when attempting to upload files via the web UI

Modified the error message to prepend a The, simple change.
This commit is contained in:
Daniel Franklin 2012-01-31 15:17:53 -05:00
parent 026f49ab31
commit de7bbbb479
1 changed files with 1 additions and 1 deletions

View File

@ -911,7 +911,7 @@ class Application_Model_StoredFile {
if ($r === false) {
#something went wrong likely there wasn't enough space in the audio_stor to move the file too.
#warn the user that the file wasn't uploaded and they should check if there is enough disk space.
die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "File was not uploaded, this error will occur if the computer hard drive does not have enough disk space."}}');
die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "The file was not uploaded, this error will occur if the computer hard drive does not have enough disk space."}}');
}
//$r = @copy($audio_file, $audio_stor);