diff --git a/en/views/helpers/form.rst b/en/views/helpers/form.rst index d0b6376a1e..1472741556 100644 --- a/en/views/helpers/form.rst +++ b/en/views/helpers/form.rst @@ -2444,7 +2444,7 @@ a multiple select input for belongs to many associations:: echo $this->Form->control('tags._ids', [ 'type' => 'select', 'multiple' => true, - 'options' => $tagList, + 'options' => $tags, // $tags is the output of $this->Articles->Tags->find('list')->all() in the controller ]);