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

Changed URL that is sent in email to use absolute URL instead of relative.

parent 2c72a889
No related branches found
No related tags found
No related merge requests found
......@@ -1395,7 +1395,7 @@ function quiz_mail($key, &$message, $params) {
'!correct' => isset($score['numeric_score']) ? $score['numeric_score'] : 0,
'!total' => $score['possible_score'],
'!percentage' => $score['percentage_score'],
'!url' => url('user/quiz/' . $rid . '/userresults'),
'!url' => url('user/quiz/' . $rid . '/userresults', array('absolute' => TRUE)),
);
switch ($key) {
......
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