Skip to content

Commit 6458ca7

Browse files
committed
remove special handling of columns with double quotes in them (refs #4617)
1 parent 77ea550 commit 6458ca7

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

classes/Kohana/Database.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -530,11 +530,6 @@ public function quote_column($column)
530530
{
531531
return $column;
532532
}
533-
elseif (strpos($column, '"') !== FALSE)
534-
{
535-
// Quote the column in FUNC("column") identifiers
536-
$column = preg_replace('/"(.+?)"/e', '$this->quote_column("$1")', $column);
537-
}
538533
elseif (strpos($column, '.') !== FALSE)
539534
{
540535
$parts = explode('.', $column);

0 commit comments

Comments
 (0)