Index: temp_moodle_dev/moodle/mod/glossary/edit.php =================================================================== diff -u -rae465e5a7d3f73c6a9a65042c15fb2915be164e6 -r5019696c30911cb68ce5420294a46daaad5cd8fa --- temp_moodle_dev/moodle/mod/glossary/edit.php (.../edit.php) (revision ae465e5a7d3f73c6a9a65042c15fb2915be164e6) +++ temp_moodle_dev/moodle/mod/glossary/edit.php (.../edit.php) (revision 5019696c30911cb68ce5420294a46daaad5cd8fa) @@ -116,6 +116,11 @@ } add_to_log($course->id, "glossary", "add entry", "view.php?id=$cm->id&mode=entry&hook=$todb->id", $todb->id,$cm->id); + //in lams: if student or teacher in student mode, display the next activity button when insert a new entry + $editing = optional_param('editing', 0, PARAM_INT); // 1 if editing in Lams + if($cm->is_lams==1&&$editing==0){ + include('showlamsnext.php'); + } } else { error("Could not insert this new entry"); }