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 @@ -3601,10 +3601,15 @@ sub git_header_html {
3601
3601
insert_file($site_header );
3602
3602
}
3603
3603
3604
- print " <div class=\" page_header\" >\n " .
3605
- $cgi -> a({-href => esc_url($logo_url ),
3606
- -title => $logo_label },
3607
- qq( <img src=") .esc_url($logo ).qq( " width="72" height="27" alt="git" class="logo"/>) );
3604
+ print " <div class=\" page_header\" >\n " ;
3605
+ if (defined $logo ) {
3606
+ print $cgi -> a({-href => esc_url($logo_url ),
3607
+ -title => $logo_label },
3608
+ $cgi -> img({-src => esc_url($logo ),
3609
+ -width => 72, -height => 27,
3610
+ -alt => " git" ,
3611
+ -class => " logo" }));
3612
+ }
3608
3613
print $cgi -> a({-href => esc_url($home_link )}, $home_link_str ) . " / " ;
3609
3614
if (defined $project ) {
3610
3615
print $cgi -> a({-href => href(action => " summary" )}, esc_html($project ));
You can’t perform that action at this time.
0 commit comments