浏览代码

Update Bitmasked.md

Mark Sch 8 年之前
父节点
当前提交
c8ca5e50d6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/Behavior/Bitmasked.md

+ 1 - 1
docs/Behavior/Bitmasked.md

@@ -83,7 +83,7 @@ $comments = $this->Comments->find('bits', ['bits' => $statuses])->toArray();
 ```
 
 #### Using Search plugin
-If you use [Search](https://github.com/FriendsOfCake/search/) plugin, you can easily make a filter as multi-checkbox:
+If you use [Search](https://github.com/FriendsOfCake/search/) plugin, you can easily make a filter as multi-checkbox (or any multi-select type):
 ```php
 echo $this->Form->control('status', ['options' => Comment::statuses(), 'multiple' => 'checkbox', 'empty' => ' - no filter - ']);
 ```