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 {
35163516 insert_file($site_header );
35173517 }
35183518
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+ }
35233528 print $cgi -> a({-href => esc_url($home_link )}, $home_link_str ) . " / " ;
35243529 if (defined $project ) {
35253530 print $cgi -> a({-href => href(action => " summary" )}, esc_html($project ));
You can’t perform that action at this time.
0 commit comments