Change record status: 
Introduced in branch: 
7.x-2.x
Introduced in version: 
7.x-2.0-alpha1
Description: 

This was to make the file_view_multiple() function compatible with Entity API's entity_view() function.

Before:

$output = file_view_multiple($files, 'full');
// Return the file 10's output.
return $output[10];

After:

$output = file_view_multiple($files, 'full');
// Return the file 10's output.
return $output['files'][10];
Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done