From 61ca5f8dd368615a92823956d63431bd7ed2de9a Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Tue, 14 Mar 2006 09:08:58 +0000 Subject: [PATCH] quoting tag string --- blog/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/index.php b/blog/index.php index a4b754d3f8..e8ef88d755 100755 --- a/blog/index.php +++ b/blog/index.php @@ -25,7 +25,7 @@ $d = optional_param('d', 0, PARAM_INT); //day $userid = optional_param('userid',0,PARAM_INT); $groupid = optional_param('groupid',0,PARAM_INT); $courseid = optional_param('courseid',0,PARAM_INT); -$tag = urldecode(optional_param('tag', '', PARAM_NOTAGS)); +$tag = s(urldecode(optional_param('tag', '', PARAM_NOTAGS))); $tagid = optional_param('tagid', 0, PARAM_INT); $filtertype = optional_param('filtertype', '', PARAM_ALPHA); -- 2.39.5