You are here

function nodewords_update_6183 in Nodewords: D6 Meta Tags 6

Notify the user that the /forum main page's meta tags are now handled via the new settings page.

File

./nodewords.install, line 1690
Installation file for nodewords.module.

Code

function nodewords_update_6183() {
  $ret = array();

  // If the forum module is enabled notify the user.
  if (module_exists('forum')) {
    $ret[] = array(
      'success' => TRUE,
      'query' => t('Meta tags for the main forum page are now handled by a custom <a href="@url">forum settings page<a/>. Any existing meta tags defined via a custom page page will need to be manually converted.', array(
        '@url' => 'admin/content/nodewords/meta-tags/forum',
      )),
    );
  }
  return $ret;
}