? coder.patch Index: coder.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/coder/coder.module,v retrieving revision 1.55.2.20 diff -u -p -r1.55.2.20 coder.module --- coder.module 23 Mar 2007 06:17:42 -0000 1.55.2.20 +++ coder.module 23 Mar 2007 19:37:08 -0000 @@ -1069,7 +1069,7 @@ function do_coder_review_callback(&$code } /** - * Search for a string. + * Helper function to search for a string. * * Uses strpos() and stripos() if available for performance optimization or * preg_match(). @@ -1082,7 +1082,7 @@ function do_coder_review_callback(&$code function _coder_search_string($line, $rule) { static $php5; - if (!isset($is_php5)) { + if (!isset($php5)) { if (function_exists('stripos')) { $php5 = true; } Index: includes/coder_style.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/coder/includes/coder_style.inc,v retrieving revision 1.4.4.9 diff -u -p -r1.4.4.9 coder_style.inc --- includes/coder_style.inc 23 Mar 2007 06:17:43 -0000 1.4.4.9 +++ includes/coder_style.inc 23 Mar 2007 19:50:18 -0000 @@ -57,7 +57,7 @@ function coder_style_reviews() { '#source' => 'all', '#value' => '$Id', '#case-sensitive' => true, - '#warning' => 'Include the CVS keyword $Id: coder_style.inc,v 1.4.4.9 2007/03/23 06:17:43 douggreen Exp $ in each file', + '#warning' => "Include the CVS keyword \$Id\$ in each file", ), array( '#type' => 'regex',