fixed capitalization and quoting of attribute values

This commit is contained in:
gustav_delius 2004-09-12 17:34:35 +00:00
parent 41905731b7
commit d1290cec39
121 changed files with 1401 additions and 1401 deletions

View file

@ -1,4 +1,4 @@
<?PHP // $Id$
<?php // $Id$
// This page lists all the instances of quiz in a particular course
@ -76,10 +76,10 @@
foreach ($quizzes as $quiz) {
if (!$quiz->visible) {
//Show dimmed if the mod is hidden
$link = "<A class=\"dimmed\" HREF=\"view.php?id=$quiz->coursemodule\">$quiz->name</A>";
$link = "<a class=\"dimmed\" href=\"view.php?id=$quiz->coursemodule\">$quiz->name</a>";
} else {
//Show normal if the mod is visible
$link = "<A HREF=\"view.php?id=$quiz->coursemodule\">$quiz->name</A>";
$link = "<a href=\"view.php?id=$quiz->coursemodule\">$quiz->name</a>";
}
$bestgrade = quiz_get_best_grade($quiz->id, $USER->id);