Skip to content
Snippets Groups Projects
Commit 7033d0b0 authored by Matt Butcher's avatar Matt Butcher
Browse files

#587314 by artscoop, mbutcher: Fixed broken format_plural call.

parent 6d601def
No related branches found
No related tags found
No related merge requests found
......@@ -481,7 +481,7 @@ function theme_quiz_user_summary($quiz, $questions, $score, $summary) {
* @ingroup themeable
*/
function theme_quiz_feedback($questions, $showpoints = TRUE, $showfeedback = FALSE) {
$header = array(format_plural(count($questions), t('Question Result'), t('Question Results')));
$header = array(format_plural(count($questions), 'Question Result', 'Question Results'));
$rows = array();
// Go through each of the questions.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment