Index: temp_moodle_dev/moodle/mod/glossary/edit.php =================================================================== RCS file: /usr/local/cvsroot/temp_moodle_dev/moodle/mod/glossary/edit.php,v diff -u -r1.2 -r1.3 --- temp_moodle_dev/moodle/mod/glossary/edit.php 19 Nov 2008 06:48:16 -0000 1.2 +++ temp_moodle_dev/moodle/mod/glossary/edit.php 27 Nov 2008 02:17:34 -0000 1.3 @@ -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"); }