Removing unused statement, thanks jrbasso

This commit is contained in:
José Lorenzo Rodríguez 2010-01-29 16:15:03 -04:30
parent 2e49a96634
commit 3f9813a9ec
2 changed files with 1 additions and 2 deletions

View file

@ -494,7 +494,6 @@ class DboSource extends DataSource {
return $this->startQuote . implode($this->endQuote . '.' . $this->startQuote, $items) . $this->endQuote;
}
if (preg_match('/^\w+\.\*$/', $data)) { // string.*
$items = explode('.', $data);
return $this->startQuote . str_replace('.*', $this->endQuote . '.*', $data);
}
if (preg_match('/^(\w+)\((.*)\)$/', $data, $matches)) { // Functions

View file

@ -789,7 +789,7 @@ class Set {
if (empty($val2)) {
return (array)$val1;
}
$intersection = array_intersect_key($val1,$val2);
$intersection = array_intersect_key($val1, $val2);
while (list($key,) = each($intersection)) {
if ($val1[$key] == $val2[$key]) {
unset($val1[$key]);