Index: includes/coder_style.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/coder/includes/coder_style.inc,v
retrieving revision 1.16
diff -u -p -r1.16 coder_style.inc
--- includes/coder_style.inc	22 Jul 2007 18:12:01 -0000	1.16
+++ includes/coder_style.inc	15 Apr 2008 10:18:06 -0000
@@ -44,13 +44,8 @@ function coder_style_reviews() {
     ),
     array(
       '#type' => 'regex',
-      '#value' => '(\.\s\'\'|\'\'\s\.|\.\s""|\.\s"")',
-      '#warning' => 'string concatenation should be formatted without a space separating the operators (dot .) and a quote',
-    ),
-    array(
-      '#type' => 'regex',
-      '#value' => '([^\'\"\s0-9]\.|\.[^\'\"\=\s0-9])',
-      '#warning' => 'string concatenation should be formatted with a space separating the operators (dot .) and non-quote terms',
+      '#value' => '([^\s]\.|\.[^\=\s])',
+      '#warning' => 'String concatenation should be formatted with a space separating the operators (dot .) and the terms',
     ),
     array(
       '#type' => 'regex',
@@ -61,7 +56,7 @@ function coder_style_reviews() {
     array(
       '#type' => 'regex',
       '#value' => 'global\s+\$(\w+)(,\s\$(\w+))*',
-      '#not' => '^_|^('. _coder_style_core_global_regex() .')$',
+      '#not' => '^_|^(' . _coder_style_core_global_regex() . ')$',
       '#warning' => 'global variables should start with a single underscore followed by the module and another underscore',
     ),
     array(
@@ -99,7 +94,7 @@ function coder_style_reviews() {
     array(
       '#type' => 'regex',
       '#source' => 'html',
-      '#value' => '<'. $br .'>', // NOTE: use $br only to avoid a warning
+      '#value' => '<' . $br . '>', // NOTE: use $br only to avoid a warning
       '#warning' => 'use &lt;br /&gt; instead of &lt;br&gt;',
       '#severity' => 'minor',
     ),
