Problem/Motivation
taxonomy_vocabulary_load_multiple() and taxonomy_term_load_multiple() are useless wrappers to entity_load_multiple()
Proposed resolution
Replace calls to corresponding:
taxonomy_vocabulary_load_multiple($vids) => entity_load_multiple('taxonomy_vocabulary', $vids)
taxonomy_term_load_multiple($tids) => entity_load_multiple('taxonomy_term', $tids)
Remaining tasks
- Commit a patch
- Update change notice https://drupal.org/node/1972410