From 7f3e948150d6455a4d74fd3c6aad06be2b2fcdd3 Mon Sep 17 00:00:00 2001
From: webchick <webchick@24967.no-reply.drupal.org>
Date: Fri, 30 Sep 2011 14:38:03 -0700
Subject: [PATCH] Issue #1295460 by TR, pillarsdotnet: Fixed Add missing '$'
 character to docblock for taxonomy_get_term_by_name() function.

---
 modules/taxonomy/taxonomy.module | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index c81b430e9cb1..7921b797cce5 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -817,7 +817,7 @@ function taxonomy_terms_static_reset() {
 
 /**
  * Clear all static cache variables for vocabularies.
- * 
+ *
  * @param $ids
  * An array of ids to reset in entity controller cache.
  */
@@ -848,7 +848,7 @@ function taxonomy_vocabulary_get_names() {
   if (!isset($names)) {
     $names = db_query('SELECT name, machine_name, vid FROM {taxonomy_vocabulary}')->fetchAllAssoc('machine_name');
   }
-  
+
   return $names;
 }
 
@@ -1061,7 +1061,7 @@ function taxonomy_get_tree($vid, $parent = 0, $max_depth = NULL, $load_entities
  * Provides a case-insensitive and trimmed mapping, to maximize the
  * likelihood of a successful match.
  *
- * @param name
+ * @param $name
  *   Name of the term to search for.
  *
  * @return
-- 
GitLab