[LON-CAPA-cvs] cvs: loncom /auth lonauth.pm
bisitz
bisitz@source.lon-capa.org
Fri, 03 Jul 2009 10:22:00 -0000
bisitz Fri Jul 3 10:22:00 2009 EDT
Modified files:
/loncom/auth lonauth.pm
Log:
Added breadcrumbs to successful login forwarding page
Index: loncom/auth/lonauth.pm
diff -u loncom/auth/lonauth.pm:1.98 loncom/auth/lonauth.pm:1.99
--- loncom/auth/lonauth.pm:1.98 Wed May 27 16:54:52 2009
+++ loncom/auth/lonauth.pm Fri Jul 3 10:22:00 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network
# User Authentication Module
#
-# $Id: lonauth.pm,v 1.98 2009/05/27 16:54:52 www Exp $
+# $Id: lonauth.pm,v 1.99 2009/07/03 10:22:00 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -78,9 +78,12 @@
my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);
my $setflags=&Apache::lonmenu::setflags();
my $maincall=&Apache::lonmenu::maincall();
+ my $brcrum = [{'href' => '',
+ 'text' => 'Successful Login'},];
my $start_page=&Apache::loncommon::start_page('Successful Login',
- $startupremote,
- {'no_inline_link' => 1,});
+ $startupremote,
+ {'no_inline_link' => 1,
+ 'bread_crumbs' => $brcrum,});
my $end_page =&Apache::loncommon::end_page();
my $continuelink;