Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5cda87e

Browse files
authoredMar 18, 2021
Typo correction from like to where
1 parent 045fe9c commit 5cda87e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ The view at `app/Views/example.php` is a simple Codeigniter view file and includ
220220
| unsetRead | ```$crud->unsetRead();``` | The method unsetRead is removing completely the Read operation for the end-user. |
221221
| unsetReadFields | ```$crud->unsetReadFields(['address_1', 'address_2', 'credit_limit']);``` | Unset (do not display) the specified fields for the view (read only) form. |
222222
| unsetTexteditor | ```$crud->unsetTexteditor(['description', 'full_description']);``` | Unsets the texteditor for the selected fields. This function is really rare to use as by default there is not any load of the texteditor for optimising purposes. |
223-
| where | ```$crud->like('country', 'USA');``` | Filter the queries with an extra where statement. |
223+
| where | ```$crud->where('country', 'USA');``` | Filter the queries with an extra where statement. |
224224

225225
### Callback Functionality (Changing or enhancing the default behavior with callbacks)
226226

@@ -650,4 +650,4 @@ able to change and this is causing a development and an end-user confusion. It i
650650
need to specify which fields with `$crud->setTexteditor`
651651
* `unsetOperations` (previously `unset_operations`) is not removing the print and the export ability
652652

653-
For more information, visit http://www.grocerycrud.com
653+
For more information, visit http://www.grocerycrud.com

0 commit comments

Comments
 (0)
Please sign in to comment.