From 5549149433bb7cc17b6be73e67a6a9f11ba7c783 Mon Sep 17 00:00:00 2001 From: Nobuo Kihara Date: Tue, 23 Dec 2014 08:26:21 +0900 Subject: [PATCH] docs/guide/security-best-practices.md - minor fix [ci skip] --- docs/guide/security-best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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