Skip to content

Commit

Permalink
Merge pull request cakephp#1206 from lucasff/patch-2
Browse files Browse the repository at this point in the history
Update virtual-fields.rst
  • Loading branch information
lorenzo committed Mar 31, 2014
2 parents c164a0a + 83975e8 commit 494278c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/models/virtual-fields.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ would be::
And with PostgreSQL::

public $virtualFields = array(
'name' => 'User.first_name || \' \' || User.last_name'
'name' => "User.first_name || ' ' || User.last_name"
);

In subsequent find operations, your User results would contain a
Expand Down

0 comments on commit 494278c

Please sign in to comment.