Skip to content

Instantly share code, notes, and snippets.

@vijaycs85
Last active December 18, 2015 17:18
Show Gist options
  • Save vijaycs85/5817105 to your computer and use it in GitHub Desktop.
Save vijaycs85/5817105 to your computer and use it in GitHub Desktop.
<?php
// Set page title, if exist.
if (isset($page['#page_title'])) {
// Check for title output flag.
if (!isset($page['#page_title_output']) || !in_array($page['#page_title_output'], array(CHECK_PLAIN, PASS_THROUGH))) {
$page['#page_title_output'] = CHECK_PLAIN;
}
drupal_set_title($page['#page_title'], $page['#page_title_output']);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment