diff options
author | Andrey Andreev <narf@devilix.net> | 2016-03-30 12:32:15 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-03-30 12:32:15 +0200 |
commit | b9c69165355732c5c8d18f16f11481283a04ccb0 (patch) | |
tree | 1cb427cb43e18e792fc416cc6f46ade86648e733 /user_guide_src | |
parent | 2f576ef91e9517191b31f6771c3a3e58f638b47d (diff) |
[ci skip] Fix #4557
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/libraries/form_validation.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst index 44adfd715..b03b544e2 100644 --- a/user_guide_src/source/libraries/form_validation.rst +++ b/user_guide_src/source/libraries/form_validation.rst @@ -465,7 +465,7 @@ for you to process. To invoke a callback just put the method name in a rule, with "callback\_" as the rule **prefix**. If you need to receive an extra parameter in your callback method, just add it normally after the -method name between square brackets, as in: "callback_foo**[bar]**", +method name between square brackets, as in: ``callback_foo[bar]``, then it will be passed as the second argument of your callback method. .. note:: You can also process the form data that is passed to your |