diff --git a/docs/guide/security-best-practices.md b/docs/guide/security-best-practices.md index 77ea30cc05..9ddd2ace76 100644 --- a/docs/guide/security-best-practices.md +++ b/docs/guide/security-best-practices.md @@ -33,7 +33,7 @@ In Yii, most probably you'll use [form validation](input-validation.md) to do al Escape output means that depending on context where we're using data it should be escaped i.e. in context of HTML you should escape `<`, `>` and alike special characters. In context of JavaScript or SQL it will be different set of characters. -Since it's error-prone to escape everything automatically Yii provides various tools to perform escaping for different +Since it's error-prone to escape everything manually Yii provides various tools to perform escaping for different contexts. Avoiding SQL injections