From 8887711be48e024c459fe7b6bc9db9b91b1751f3 Mon Sep 17 00:00:00 2001 From: poltawski Date: Fri, 31 Jul 2009 21:20:35 +0000 Subject: [PATCH] blocks/rss_client: MDL-13932 Fix typo when editting feed This caused loss of which course we were adding/edditing a feed to. --- blocks/rss_client/editfeed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks/rss_client/editfeed.php b/blocks/rss_client/editfeed.php index e14cb9a8b8..098cbb6a11 100644 --- a/blocks/rss_client/editfeed.php +++ b/blocks/rss_client/editfeed.php @@ -125,7 +125,7 @@ $urlparams = array('rssid' => $rssid); $manageparams = array(); if ($courseid) { $urlparams['courseid'] = $courseid; - $manageparams[] = 'courseid=$courseid'; + $manageparams[] = 'courseid=' . $courseid; } if ($returnurl) { $urlparams['returnurl'] = $returnurl; -- 2.39.5