From 314fc083d925e4e0def3e7b926de818bcd50bdfb Mon Sep 17 00:00:00 2001 From: tjhunt Date: Wed, 19 Sep 2007 17:44:52 +0000 Subject: [PATCH] MDL-10824 - spaces in javascript URLs are not strictly valid. Merged from MOODLE_18_STABLE. --- question/editlib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/question/editlib.php b/question/editlib.php index 6f201f8b1a..e535ac4251 100644 --- a/question/editlib.php +++ b/question/editlib.php @@ -368,8 +368,8 @@ function question_list($contexts, $pageurl, $categoryandcontext, $cm = null, echo $paging; if ($caneditall || $canmoveall || $canuseall){ - echo ''.$strselectall.' /'. - ' '.$strselectnone.''; + echo ''.$strselectall.' /'. + ' '.$strselectnone.''; echo '
'; echo ' '.get_string('withselected', 'quiz').':
'; -- 2.39.5