Skip to content

Commit

Permalink
called table column 'Action' consistently, fixing bug 2698
Browse files Browse the repository at this point in the history
  • Loading branch information
gustav_delius committed Mar 8, 2005
1 parent 0c518c5 commit 19201c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mod/quiz/locallib.php
Expand Up @@ -1247,6 +1247,7 @@ function quiz_print_question_list($questionlist, $grades, $allowdelete=true, $qu
$strgrade = get_string("grade");
$strremove = get_string('remove', 'quiz');
$stredit = get_string("edit");
$straction = get_string("action");
$strmoveup = get_string("moveup");
$strmovedown = get_string("movedown");
$strsavegrades = get_string("savegrades", "quiz");
Expand All @@ -1259,7 +1260,7 @@ function quiz_print_question_list($questionlist, $grades, $allowdelete=true, $qu
echo "<form method=\"post\" action=\"edit.php\">";
echo "<input type=\"hidden\" name=\"sesskey\" value=\"$USER->sesskey\">";
echo "<table border=\"0\" cellpadding=\"5\" cellspacing=\"2\" width=\"100%\">\n";
echo "<tr><th width=\"*\" colspan=\"3\" nowrap=\"nowrap\">$strorder</th><th align=\"left\" width=\"100%\" nowrap=\"nowrap\">$strquestionname</th><th width=\"*\" nowrap=\"nowrap\">$strtype</th><th width=\"*\" nowrap=\"nowrap\">$strgrade</th><th align=\"center\" width=\"60\" nowrap=\"nowrap\">$stredit</th></tr>\n";
echo "<tr><th width=\"*\" colspan=\"3\" nowrap=\"nowrap\">$strorder</th><th align=\"left\" width=\"100%\" nowrap=\"nowrap\">$strquestionname</th><th width=\"*\" nowrap=\"nowrap\">$strtype</th><th width=\"*\" nowrap=\"nowrap\">$strgrade</th><th align=\"center\" width=\"60\" nowrap=\"nowrap\">$straction</th></tr>\n";
foreach ($order as $qnum) {
if (empty($questions[$qnum])) {
continue;
Expand Down

0 comments on commit 19201c8

Please sign in to comment.