--- loncom/auth/lonroles.pm 2010/09/03 19:20:51 1.240.2.16 +++ loncom/auth/lonroles.pm 2010/10/04 17:43:24 1.240.2.17 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # User Roles Screen # -# $Id: lonroles.pm,v 1.240.2.16 2010/09/03 19:20:51 raeburn Exp $ +# $Id: lonroles.pm,v 1.240.2.17 2010/10/04 17:43:24 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -138,7 +138,6 @@ use Apache::lonannounce; use Apache::lonlocal; use Apache::lonpageflip(); use Apache::lonnavdisplay(); -use Apache::lonmainmenu(); use Apache::loncoursequeueadmin; use GDBM_File; use LONCAPA qw(:DEFAULT :match); @@ -595,8 +594,11 @@ ENDENTERKEY my ($crumbtext,$pagetitle,$recent,$show_course); my $noscript=''.&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.').'
'.&mt('As this is not the case, most functionality in the system will be unavailable.').'

'; if ($custommenu) { - my $start_page = &Apache::loncommon::start_page('Main Menu',undef, - {'bread_crumbs' => 1}); + my $brcrum = {'bread_crumbs' => 1}; + if ($env{'form.destinationurl'} eq '/adm/gci_info') { + undef($brcrum); + } + my $start_page = &Apache::loncommon::start_page('Main Menu',undef,$brcrum); $r->print(<<"ENDCUSTOM"); $start_page
@@ -748,13 +750,13 @@ ENDHEADER my $numcourses = keys(%courses); my $switcher; if ($numcourses > 0) { - $switcher = &Apache::lonmainmenu::gcitest_switcher('cc',%courses); + $switcher = &Apache::loncommon::gcitest_switcher('cc',%courses); my $current; if ($env{'request.course.id'}) { $current = 'cc./'.$env{'course.'.$env{'request.course.id'}.'.domain'}. '/'.$env{'course.'.$env{'request.course.id'}.'.num'}; } - my $switcher_js = &Apache::lonmainmenu::gcitest_switcher_js($current,$numcourses); + my $switcher_js = &Apache::loncommon::gcitest_switcher_js($current,$numcourses); $r->print(<<"ENDSCRIPT");