Skip to content

Commit

Permalink
removing unneeded parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeram committed Jul 12, 2011
1 parent 273125d commit 6047024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Model/Datasource/DboSource.php
Expand Up @@ -1846,7 +1846,7 @@ protected function _prepareUpdateFields($model, $fields, $quoteValues = true, $a
$update = $quoted . ' = ';

if ($quoteValues) {
$update .= $this->value($value, $model->getColumnType($field), false);
$update .= $this->value($value, $model->getColumnType($field));
} elseif (!$alias) {
$update .= str_replace($quotedAlias . '.', '', str_replace(
$model->alias . '.', '', $value
Expand Down

0 comments on commit 6047024

Please sign in to comment.