Index: amazon_filter/amazon_filter.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/amazon_filter/amazon_filter.module,v retrieving revision 1.5 diff -u -r1.5 amazon_filter.module --- amazon_filter/amazon_filter.module 14 Feb 2007 05:30:56 -0000 1.5 +++ amazon_filter/amazon_filter.module 9 Feb 2008 04:07:50 -0000 @@ -9,7 +9,7 @@ * Implementation of hook_filter_tips(). */ function amazon_filter_filter_tips($delta, $format, $long = FALSE) { - return t('Syntax: [amazon title|cover|info asin] Example: [amazon cover B0007M123K]' + return t('Syntax: [amazon asin], where type is one of title, cover, info, and block Example: [amazon cover B0007M123K]' } /** @@ -72,6 +72,12 @@ } $output .= ''; break; + case 'block': + $associd = variable_get('amazon_associate_id', ''); + $output = ''; + break; + } return $output; -} \ No newline at end of file +}