1.20.x drupal.inc drupal_explode_tags($tags)

Explodes a string of tags into an array.

Deprecated

since 1.0.0

See also

backdrop_explode_tags()

Related topics

File

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

Code

function drupal_explode_tags($tags) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  return backdrop_explode_tags($tags);
}