Browse Source

Fixed the indent style

Enrico Zimuel 10 years ago
parent
commit
6a5004acb8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      library/Zend/Db/Select.php

+ 1 - 1
library/Zend/Db/Select.php

@@ -940,7 +940,7 @@ class Zend_Db_Select
             $currentCorrelationName = $correlationName;
             if (is_string($col)) {
                 // Check for a column matching "<column> AS <alias>" and extract the alias name
-                $col = trim(str_replace("\n",' ',$col));
+                $col = trim(str_replace("\n", ' ', $col));
                 if (preg_match('/^(.+)\s+' . self::SQL_AS . '\s+(.+)$/i', $col, $m)) {
                     $col = $m[1];
                     $alias = $m[2];