Skip to content

Commit

Permalink
changed more relative filenames to absolute, see bug 3483
Browse files Browse the repository at this point in the history
  • Loading branch information
gustav_delius committed Jun 13, 2005
1 parent cbe80a5 commit 4fb6abd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mod/quiz/config.html
Expand Up @@ -261,7 +261,7 @@


<tr valign="top">
<?php include('reviewoptions.html'); ?>
<?php include($CFG->dirroot . '/mod/quiz/reviewoptions.html'); ?>
<td align="center">
<input type="hidden" name="fix_review" value="0" />
<input type="checkbox" name="fix_review" value="1" <?php p($CFG->quiz_fix_review ? "checked" : "") ?> />
Expand Down
4 changes: 2 additions & 2 deletions mod/quiz/mod.html
Expand Up @@ -281,7 +281,7 @@

<?php if (!$CFG->quiz_fix_review) {
echo '<tr valign="top">';
include('reviewoptions.html');
include($CFG->dirroot . '/mod/quiz/reviewoptions.html');
echo '</tr>';
} else $fix=1 ?>

Expand Down Expand Up @@ -506,7 +506,7 @@

<?php if ($CFG->quiz_fix_review) {
echo '<tr valign="top">';
include('reviewoptions.html');
include($CFG->dirroot . '/mod/quiz/reviewoptions.html');
echo '</tr>';
} ?>

Expand Down

0 comments on commit 4fb6abd

Please sign in to comment.