From 5e77a66a20e69160ad946f03dc6893a308627668 Mon Sep 17 00:00:00 2001 From: Evgeny Chernyavskiy Date: Fri, 16 Dec 2022 04:52:26 -0500 Subject: [PATCH] Fix a typo in Data Filtering --- _posts/10-04-01-Data-Filtering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/10-04-01-Data-Filtering.md b/_posts/10-04-01-Data-Filtering.md index 3a5ba75..81551c2 100644 --- a/_posts/10-04-01-Data-Filtering.md +++ b/_posts/10-04-01-Data-Filtering.md @@ -44,7 +44,7 @@ When you use bound parameters with [PDO](#databases), it will sanitize the input Sometimes it is required to allow some safe HTML tags in the input when including it in the HTML page. This is very hard to do and many avoid it by using other more restricted formatting like Markdown or BBCode, although whitelisting -libraries like [HTML Purifier][html-purifier] exists for this reason. +libraries like [HTML Purifier][html-purifier] exist for this reason. [See Sanitization Filters][2]