[LON-CAPA-cvs] cvs: loncom(GCI_2) /auth lonroles.pm
gci
gci@source.lon-capa.org
Wed, 23 Sep 2009 16:42:03 -0000
gci Wed Sep 23 16:42:03 2009 EDT
Modified files: (Branch: GCI_2)
/loncom/auth lonroles.pm
Log:
- lonroles.pm for GCI_2 updated to 2.9.X
- Remove changes made in 1.228 - not in 2.9.X.
--------------------------------
Index: loncom/auth/lonroles.pm
diff -u loncom/auth/lonroles.pm:1.231 loncom/auth/lonroles.pm:1.231.6.1
--- loncom/auth/lonroles.pm:1.231 Wed Aug 5 13:39:56 2009
+++ loncom/auth/lonroles.pm Wed Sep 23 16:42:03 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# User Roles Screen
#
-# $Id: lonroles.pm,v 1.231 2009/08/05 13:39:56 bisitz Exp $
+# $Id: lonroles.pm,v 1.231.6.1 2009/09/23 16:42:03 gci Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -158,12 +158,8 @@
$navwindow.=&Apache::lonnavmaps::close();
}
- # Breadcrumbs
- my $brcrum = [{'href' => $url,
- 'text' => 'Switching Role'},];
my $start_page = &Apache::loncommon::start_page('Switching Role',undef,
- {'redirect' => [1,$url],
- 'bread_crumbs' => $brcrum,});
+ {'redirect' => [1,$url]});
my $end_page = &Apache::loncommon::end_page();
# Note to style police:
@@ -189,25 +185,17 @@
&Apache::loncommon::no_cache($r);
$r->send_http_header;
return OK if $r->header_only;
- # Breadcrumbs
- my $brcrum = [{'href' => $dest,
- 'text' => 'Problems during Course Initialization'},];
- $r->print(&Apache::loncommon::start_page('Problems during Course Initialization',
- undef,
- {'bread_crumbs' => $brcrum,})
- );
- $r->print(
+ $r->print(&Apache::loncommon::start_page('Problems during Course Initialization').
'<script type="text/javascript">'.
'// <![CDATA['.
&Apache::lonmenu::rawconfig().
'// ]]>'.
'</script>'.
'<p class="LC_error">'.&mt('The following problems occurred:').
- '<br />'.
+ '<br />'.
$error.
- '</p><br /><a href="'.$dest.'">'.&mt('Continue').'</a>'
- );
- $r->print(&Apache::loncommon::end_page());
+ '</p><br /><a href="'.$dest.'">'.&mt('Continue').'</a>'.
+ &Apache::loncommon::end_page());
}
sub handler {