1 drupal.inc drupal_set_title($title = NULL, $output = CHECK_PLAIN)

Sets the title of the current page.

Deprecated

since 1.0.0

See also

backdrop_set_title()

Related topics

File

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

Code

function drupal_set_title($title = NULL, $output = CHECK_PLAIN) {
  return backdrop_set_title($title, $output);
}