version 1.716, 2008/12/15 08:11:32
|
version 1.718, 2008/12/15 16:37:44
|
Line 5721 div.columnSection > .ContentBoxSpecial
|
Line 5721 div.columnSection > .ContentBoxSpecial
|
background-color:$loginbg; |
background-color:$loginbg; |
} |
} |
|
|
.LC_loginpage_loginContainer h1{ |
.LC_loginpage_loginContainer h2{ |
margin-top:0; |
margin-top:0; |
display:block; |
display:block; |
background:$bgcol; |
background:$bgcol; |
Line 6031 sub start_page {
|
Line 6031 sub start_page {
|
$result = &html_encode($result); |
$result = &html_encode($result); |
} |
} |
|
|
if (exists $args->{'bread_crumbs'}) { |
if (exists($args->{'bread_crumbs'})) { |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
my $temp = $args->{'bread_crumbs'}; |
if (ref($args->{'bread_crumbs'}) eq 'ARRAY') { |
foreach my $crumb (@$temp){ |
foreach my $crumb (@{$args->{'bread_crumbs'}}){ |
&Apache::lonhtmlcommon::add_breadcrumb($crumb); |
&Apache::lonhtmlcommon::add_breadcrumb($crumb); |
} |
} |
$result .= &Apache::lonhtmlcommon::breadcrumbs(); |
} |
|
$result .= &Apache::lonhtmlcommon::breadcrumbs(); |
} |
} |
|
|
return $result; |
return $result; |