|
|
| Participants: |
Adriane Boyd and Tim Hunt
|
| Security Level: |
None
|
| Resolved date: |
12/Jun/07
|
| Affected Branches: |
MOODLE_19_STABLE
|
| Fixed Branches: |
MOODLE_19_STABLE
|
Responding "Yes" to the question deletion confirmation dialog returns you to the question bank page without deleting the question because $USER is not defined on line 480 of question/editlib.php.
To fix:
Index: question/editlib.php
===================================================================
RCS file: /cvsroot/moodle/moodle/question/editlib.php,v
retrieving revision 1.68
diff -r1.68 editlib.php
404c404
< global $COURSE;
—
> global $COURSE, $USER;
|
|
Description
|
Responding "Yes" to the question deletion confirmation dialog returns you to the question bank page without deleting the question because $USER is not defined on line 480 of question/editlib.php.
To fix:
Index: question/editlib.php
===================================================================
RCS file: /cvsroot/moodle/moodle/question/editlib.php,v
retrieving revision 1.68
diff -r1.68 editlib.php
404c404
< global $COURSE;
—
> global $COURSE, $USER; |
Show » |
|