From 99eb51d9e49e1bb5496a4370997ff506cf4e143d Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Tue, 7 Dec 2010 12:33:24 +0000 Subject: [PATCH] MDL-22114 forum: fixed PAGE url param set I am pretty sure Sam overlooked this is in the commit afef965e --- mod/forum/subscribe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/forum/subscribe.php b/mod/forum/subscribe.php index 4a64f6e9e1c..9d3fbb3398b 100644 --- a/mod/forum/subscribe.php +++ b/mod/forum/subscribe.php @@ -32,7 +32,7 @@ $user = optional_param('user',0,PARAM_INT); $url = new moodle_url('/mod/forum/subscribe.php', array('id'=>$id)); if ($mode !== '') { - $url->param('force', $mode); + $url->param('mode', $mode); } if ($user !== 0) { $url->param('user', $user);