Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 6a5004a

Browse files
committed
Fixed the indent style
1 parent 65251e9 commit 6a5004a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/Zend/Db/Select.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ protected function _tableCols($correlationName, $cols, $afterCorrelationName = n
940940
$currentCorrelationName = $correlationName;
941941
if (is_string($col)) {
942942
// Check for a column matching "<column> AS <alias>" and extract the alias name
943-
$col = trim(str_replace("\n",' ',$col));
943+
$col = trim(str_replace("\n", ' ', $col));
944944
if (preg_match('/^(.+)\s+' . self::SQL_AS . '\s+(.+)$/i', $col, $m)) {
945945
$col = $m[1];
946946
$alias = $m[2];

0 commit comments

Comments
 (0)