From 88593096e33e2ed28ae813c60e304f61c8e31169 Mon Sep 17 00:00:00 2001 From: webchick Date: Tue, 27 Dec 2011 21:48:52 -0800 Subject: Issue #1370060 by jvns, chris.leversuch: Add cross-references between taxonomy_vocabulary_load() and taxonomy_vocabulary_machine_name_load(). --- modules/taxonomy/taxonomy.module | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'modules') diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 891875b62..8230e7e6a 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1194,6 +1194,8 @@ function taxonomy_vocabulary_load_multiple($vids = array(), $conditions = array( * @return * The vocabulary object with all of its metadata, if exists, FALSE otherwise. * Results are statically cached. + * + * @see taxonomy_vocabulary_machine_name_load() */ function taxonomy_vocabulary_load($vid) { $vocabularies = taxonomy_vocabulary_load_multiple(array($vid)); @@ -1209,6 +1211,8 @@ function taxonomy_vocabulary_load($vid) { * @return * The vocabulary object with all of its metadata, if exists, FALSE otherwise. * Results are statically cached. + * + * @see taxonomy_vocabulary_load() */ function taxonomy_vocabulary_machine_name_load($name) { $vocabularies = taxonomy_vocabulary_load_multiple(NULL, array('machine_name' => $name)); -- cgit v1.2.3