Index: nodewords.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/nodewords/Attic/nodewords.module,v retrieving revision 1.57.2.6 diff -u -r1.57.2.6 nodewords.module --- nodewords.module 15 Feb 2008 14:16:56 -0000 1.57.2.6 +++ nodewords.module 13 Aug 2008 20:49:50 -0000 @@ -680,6 +680,10 @@ $text = substr($text, 0, $length); //TODO: is this UTF safe? } } + // do not index pager pages + if (isset($_GET['page']) && is_numeric($_GET['page'])) { + $text = preg_replace('!^index!', 'noindex', $text); + } return $text; }