mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
MDL-814 forum: provide cancel button when posting
This is the way to clear atto drafts
This commit is contained in:
parent
6597413d41
commit
f3206dfc36
@ -201,7 +201,7 @@ class mod_forum_post_form extends moodleform {
|
||||
} else {
|
||||
$submit_string = get_string('posttoforum', 'forum');
|
||||
}
|
||||
$this->add_action_buttons(false, $submit_string);
|
||||
$this->add_action_buttons(true, $submit_string);
|
||||
|
||||
$mform->addElement('hidden', 'course');
|
||||
$mform->setType('course', PARAM_INT);
|
||||
|
@ -655,7 +655,14 @@ $mform_post->set_data(array( 'attachments'=>$draftitemid,
|
||||
array('discussion'=>$discussion->id):
|
||||
array()));
|
||||
|
||||
if ($fromform = $mform_post->get_data()) {
|
||||
if ($mform_post->is_cancelled()) {
|
||||
if (!isset($discussion->id) || $forum->type === 'qanda') {
|
||||
// Q and A forums don't have a discussion page, so treat them like a new thread..
|
||||
redirect(new moodle_url('/mod/forum/view.php', array('f' => $forum->id)));
|
||||
} else {
|
||||
redirect(new moodle_url('/mod/forum/discuss.php', array('d' => $discussion->id)));
|
||||
}
|
||||
} else if ($fromform = $mform_post->get_data()) {
|
||||
|
||||
if (empty($SESSION->fromurl)) {
|
||||
$errordestination = "$CFG->wwwroot/mod/forum/view.php?f=$forum->id";
|
||||
|
Loading…
x
Reference in New Issue
Block a user