mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Fixing typo in DboSource::renderStatement()
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6364 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
ff5e6c9002
commit
7b2627caa2
1 changed files with 1 additions and 1 deletions
|
@ -1244,7 +1244,7 @@ class DboSource extends DataSource {
|
|||
break;
|
||||
case 'update':
|
||||
if (!empty($alias)) {
|
||||
$aliases = "{$this->alias}{$alias} {$joins}";
|
||||
$aliases = "{$this->alias}{$alias} {$joins} ";
|
||||
}
|
||||
return "UPDATE {$table} {$aliases}SET {$fields} {$conditions}";
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue