Skip to content

Commit

Permalink
Moving <td>, fixing bug 5019
Browse files Browse the repository at this point in the history
  • Loading branch information
gustav_delius committed Mar 29, 2006
1 parent f2feb26 commit 3b7d7fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mod/quiz/report/analysis/report.php
Expand Up @@ -89,8 +89,8 @@ function display($quiz, $cm, $course) { /// This function just displays the
}
$sql .= ' WHERE qa.quiz = '.$quiz->id. // ULPGC ecastro
' AND ( qa.sumgrades >= '.$scorelimit.' ) ';
// ^^^^^^ es posible seleccionar aquí TODOS los quizzes, como quiere Jussi,
// pero habría que llevar la cuenta ed cada quiz para restaura las preguntas (quizquestions, states)
// ^^^^^^ es posible seleccionar aqu� TODOS los quizzes, como quiere Jussi,
// pero habr�a que llevar la cuenta ed cada quiz para restaura las preguntas (quizquestions, states)
/// Fetch the attempts
$attempts = get_records_sql($sql);

Expand Down Expand Up @@ -404,10 +404,10 @@ function print_options_form($quiz, $cm, $attempts, $lowlimit=0, $pagesize=10) {
echo '<td>';
$options["download"] = "Excel";
print_single_button("report.php", $options, get_string("downloadexcel"));
echo "</td>\n";
echo '<td>';
echo "</td>\n";

if (file_exists("$CFG->libdir/phpdocwriter/lib/include.php")) {
echo '<td>';
$options["download"] = "OOo";
print_single_button("report.php", $options, get_string("downloadooo", "quiz_analysis"));
echo "</td>\n";
Expand Down

0 comments on commit 3b7d7fe

Please sign in to comment.