$string['coursehelpformat'] = 'The course main page will be displayed in this format.';
$string['coursehelpnumberweeks'] = 'Number of weeks/topics displayed on the course main page.';
$string['coursehelphiddensections'] = 'How the hidden sections in the course are displayed to students.';
-$string['coursehelpnewsitemsnumber'] = 'Number of recent items appearing on the course home page, in a news box down the right-hand side <br/>(0 => the news box won\'t appear).';
+$string['coursehelpnewsitemsnumber'] = 'Number of recent items appearing on the course home page, in a news box down the right-hand side <br/>(0 means the news box won\'t appear).';
$string['coursehelpshowgrades'] = 'Enable the display of the gradebook. It does not prevent grades from being displayed within the individual activities.';
$string['coursehelpmaximumupload'] = 'Define the largest size of file that can be uploaded by students in this course, limited by the site wide setting.';
$string['coursehelpmetacourse'] = 'Set the course a metacourse. A meta course takes enrolments (and other role assignments) from a \"child\" course or courses.';
$string['addingtruefalse'] = 'Adding a True/False question';
$string['addmoreoverallfeedbacks'] = 'Add {no} more feedback fields';
$string['addnewpagesafterselected'] = 'Add new pages after selected questions';
-$string['addnewquestionsqbank'] = 'Add questions to the category $a in the \'Question bank contents\' tool >>';
+$string['addnewquestionsqbank'] = 'Add questions to the category $a->catname in the \'Question bank contents\' tool $a->arrow';
$string['addpagehere'] = 'Add page here';
$string['addquestion'] = 'Add question';
$string['addquestions'] = 'Add questions';
* @param boolean $quiz_qbanktool Indicate to this function if the question bank window open
*/
function quiz_print_randomquestion(&$question, &$pageurl, &$quiz,$quiz_qbanktool){
- global $DB;
+ global $DB, $THEME;
+ check_theme_arrows();
echo '<div class="quiz_randomquestion">';
//TODO: Tim? I left this out from the below get_record call:, , 'contextid' => $contextid
"cat"=>$category->id.','.$category->contextid)).
'">';
}
- echo get_string("addnewquestionsqbank","quiz",
- "<strong>$category->name</strong>");
+ $a = new stdClass;
+ $a->catname = '<strong>' . $category->name . '</strong>';
+ $a->arrow = $THEME->rarrow;
+ echo get_string('addnewquestionsqbank','quiz', $a);
if(!$quiz_qbanktool){
echo '</a>';
}