User: robrechtj Branch: HEAD Date: Thu, 30 Nov 2006 11:00:38 +0000 Modified files: /modules/nodewords README.txt nodewords.module Log message: #92475 : the meta tags were not shown in the <head> section of PHP only themes (for example the chameleon theme). This is because we moved the calls for drupal_set_html_head() to hook_footer() in order to get the right DC.title (because the drupal_get_title() is not correct in hook_menu() for nodes). However, themes like chameleon only call hook_footer() after they already outputted the <head>. The fix is to move the outputting back to hook_menu(), but extend the already present UGLY HACK for DC.title by detecting whether we are on a node page. In that case, we use $node->title instead of drupal_get_title(). Thanks all for reporting it. Links: http://cvs.drupal.org/diff.php?path=contributions/modules/nodewords/README.t... http://cvs.drupal.org/diff.php?path=contributions/modules/nodewords/nodeword...