File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -3516,10 +3516,15 @@ sub git_header_html {
3516
3516
insert_file($site_header );
3517
3517
}
3518
3518
3519
- print " <div class=\" page_header\" >\n " .
3520
- $cgi -> a({-href => esc_url($logo_url ),
3521
- -title => $logo_label },
3522
- qq( <img src=") .esc_url($logo ).qq( " width="72" height="27" alt="git" class="logo"/>) );
3519
+ print " <div class=\" page_header\" >\n " ;
3520
+ if (defined $logo ) {
3521
+ print $cgi -> a({-href => esc_url($logo_url ),
3522
+ -title => $logo_label },
3523
+ $cgi -> img({-src => esc_url($logo ),
3524
+ -width => 72, -height => 27,
3525
+ -alt => " git" ,
3526
+ -class => " logo" }));
3527
+ }
3523
3528
print $cgi -> a({-href => esc_url($home_link )}, $home_link_str ) . " / " ;
3524
3529
if (defined $project ) {
3525
3530
print $cgi -> a({-href => href(action => " summary" )}, esc_html($project ));
You can’t perform that action at this time.
0 commit comments