From b12fdcbd023fc561b6ed1225f449f4fab982eab3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu>
Date: Fri, 6 Aug 2010 11:10:57 +0000
Subject: [PATCH] #795022 by nenne, fmitchell, rdrh555: cross reference
 *_explode/implode_tags() functions

---
 includes/common.inc              | 4 ++++
 modules/taxonomy/taxonomy.module | 4 +++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/includes/common.inc b/includes/common.inc
index d7b030f9e236..222a503bd1a1 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -3694,6 +3694,8 @@ function watchdog_severity_levels() {
 
 /**
  * Explode a string of given tags into an array.
+ *
+ * @see drupal_implode_tags()
  */
 function drupal_explode_tags($tags) {
   // This regexp allows the following types of user input:
@@ -3718,6 +3720,8 @@ function drupal_explode_tags($tags) {
 
 /**
  * Implode an array of tags into a string.
+ *
+ * @see drupal_explode_tags()
  */
 function drupal_implode_tags($tags) {
   $encoded_tags = array();
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 07d188e08f8e..014112006f00 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -1330,7 +1330,9 @@ function _taxonomy_get_tid_from_term($term) {
 }
 
 /**
- * Implode a list of tags of a certain vocabulary into a string.
+ * Implodes a list of tags of a certain vocabulary into a string.
+ *
+ * @see drupal_explode_tags()
  */
 function taxonomy_implode_tags($tags, $vid = NULL) {
   $typed_tags = array();
-- 
GitLab