Skip to content

Commit

Permalink
Merge pull request #529 from kamui545/patch-1
Browse files Browse the repository at this point in the history
Escape quote to avoid syntax highlighting error
  • Loading branch information
Mark committed Mar 24, 2013
2 parents 33bd001 + 3e2247a commit 34215f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fr/core-libraries/events.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ est responsable de leur attachement. Le code possible pourrait être cela ::
'inventory' => array($this->InventoryManager, 'decrement'),
'logger' => function($event) {
// Les fonction Anonyme ne sont permises que dans PHP 5.3+
CakeLog::write('info', 'Un nouvel achat à été placé avec l'id: ' . $event->subject()->id);
CakeLog::write('info', 'Un nouvel achat à été placé avec l\'id: ' . $event->subject()->id);
}
));

Expand Down

0 comments on commit 34215f3

Please sign in to comment.