Removed dead code, explode will only return false if delimiter is empty string. In such a case explode will trigger warning

This commit is contained in:
Anton Terekhov
2012-11-21 21:49:18 +04:00
parent 2ee61dc42c
commit b261538286

View File

@ -109,9 +109,6 @@ abstract class SqlDbDriver extends DbDriver
public function quoteIdentifier($ident)
{
$ident = explode('.', $ident);
if (!is_array($ident)) {
$ident = array($ident);
}
foreach ($ident as &$segment) {
$segment = $this->identifier_quote . $segment . $this->identifier_quote;
}