diff --git a/mod/forum/discuss.php b/mod/forum/discuss.php
index 2fc4a0e2bb1..581b10e5cb7 100644
--- a/mod/forum/discuss.php
+++ b/mod/forum/discuss.php
@@ -169,7 +169,7 @@
forum_print_mode_form($discussion->id, $displaymode);
echo "
";
- if (isteacher($course->id)) { // Popup menu to allow discussions to be moved to other forums
+ if (isteacher($course->id) && $forum->type != "teacher") { // Popup menu to move discussions to other forums
if ($forums = get_all_instances_in_course("forum", $course)) {
if ($course->format == 'weeks') {
$strsection = get_string("week");
|