Hi,

I'm looking at the following code from the quiz module: quiz_question.module.

If I enter the path into the browser.

I should see the message somewhere on the site?

But, I don't see it. And when I use vardump($path),

I do see the debug message for the $path = admin/help#quiz_quesion.

function quiz_question_help($path, $args) `{

if ($path == 'admin/help#quiz_quesion') {

return t('Support for Quiz question types.');

}

//var_dump($path);

}