You are here

function page_title_is_up_to_date in Page Title 7.2

Same name and namespace in other branches
  1. 8.2 page_title.module \page_title_is_up_to_date()
  2. 6.2 page_title.module \page_title_is_up_to_date()

Internal function for checking if Page Title is ok to run

1 call to page_title_is_up_to_date()
page_title_requirements in ./page_title.module
Implements hook_requirements().

File

./page_title.module, line 928
Enhanced control over the page title (in the head tag).

Code

function page_title_is_up_to_date() {
  return drupal_get_installed_schema_version('page_title') >= max((array) drupal_get_schema_versions('page_title'));
}