mirror of
https://github.com/dg/dibi.git
synced 2025-10-20 01:06:25 +02:00
substitutes moved from DibiDriver to Dibi
changed "comments" behavior in DibiParser
This commit is contained in:
@@ -166,7 +166,7 @@ class DibiMySqlDriver extends DibiDriver {
|
||||
|
||||
public function quoteName($value)
|
||||
{
|
||||
return '`' . strtr( $this->applySubsts($value), array('.' => '`.`')) . '`';
|
||||
return '`' . str_replace('.', '`.`', $value) . '`';
|
||||
}
|
||||
|
||||
|
||||
@@ -334,9 +334,3 @@ class DibiMySqlResult extends DibiResult
|
||||
|
||||
|
||||
} // class DibiMySqlResult
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
?>
|
Reference in New Issue
Block a user