function nodewords_update_6185 in Nodewords: D6 Meta Tags 6
Notify the user that the /blog main page's meta tags are now handled via the new settings page.
File
- ./
nodewords.install, line 1721 - Installation file for nodewords.module.
Code
function nodewords_update_6185() {
$ret = array();
// Notify the user about the new settings page if the blog module is enabled.
if (module_exists('blog')) {
$ret[] = array(
'success' => TRUE,
'query' => t('Meta tags for the main blog page are now handled by a custom <a href="@url">blog 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/blog',
)),
);
}
return $ret;
}