PUGX / PUGXAutoCompleterBundle

Add an autocomplete field to your Symfony forms
GNU Lesser General Public License v3.0
93 stars 38 forks source link

Small error in documentation #43

Closed koertho closed 7 years ago

koertho commented 7 years ago

In the Controller "searchAuthorAction" the line $q = $request->query->get('q'); should be $q = $request->query->get('term'); Cause the request parameter is "term", not "q"

Thank you for this Bundle!