drupal_set_title($title = NULL)
drupal/includes/bootstrap.inc, line 406
Set the title of the current page, for display on the page and in the title bar.
function drupal_set_title($title = NULL) {
static $stored_title;
if (isset($title)) {
$stored_title = $title;
}
return $stored_title;
}