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/watchlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'www/watchlist.php') diff --git a/www/watchlist.php b/www/watchlist.php index 6198781..b92fb9c 100644 --- a/www/watchlist.php +++ b/www/watchlist.php @@ -78,7 +78,7 @@ if ($user) { // 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