From 45feef9f6bdae1f2ed9c386ace5f47f012526a4a Mon Sep 17 00:00:00 2001 From: cweiske Date: Thu, 29 Oct 2009 09:05:37 +0000 Subject: fix several XSS injection problems with page variable git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@468 b3834d28-1941-0410-a4f8-b48e95affb8f --- www/tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'www/tags.php') diff --git a/www/tags.php b/www/tags.php index e3fd6d2..fed4510 100644 --- a/www/tags.php +++ b/www/tags.php @@ -73,7 +73,7 @@ array(filter($sitename .': '. $pagetitle), createURL('rss', 'all/'. filter($cat, // Pagination $perpage = getPerPageCount($currentUser); if (intval(GET_PAGE) > 1) { - $page = GET_PAGE; + $page = intval(GET_PAGE); $start = ($page - 1) * $perpage; } else { $page = 0; -- cgit v1.2.3-54-g00ecf