1.20.x drupal.inc drupal_implode_tags($tags)

Implodes an array of tags into a string.

Deprecated

since 1.0.0

See also

backdrop_implode_tags()

Related topics

File

includes/drupal.inc, line 1526
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_implode_tags($tags) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  return backdrop_implode_tags($tags);
}