Skip to content
Snippets Groups Projects
Commit 5931fdab authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

Restore copyright being displayed for man.cgi

parent 41e987f5
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,23 @@ $www{'home'} = 'http://www.OpenLDAP.org';
$www{'head'} = qq[<a href="/"><img alt="OpenLDAP" src="/images/headers/LDAPlogo.gif"></a>Manual Pages];
#$www{'head'} = $www{'title'};
$copyright = "&copy; <nobr>Copyright 1998-2020</nobr>\n"
. '<nobr><a href="http://www.OpenLDAP.org/foundation/">OpenLDAP Foundation</a></nobr>'."\n"
. '<a href="mailto:info@OpenLDAP.org">info@OpenLDAP.org</a>'."\n";
sub pr_copyright() {
print <<EXT;
<P>
<FONT COLOR="#808080" FACE="Arial,Verdana,Helvetica" SIZE="1">
<B>______________<BR>
<SMALL>$copyright</SMALL>
</B></FONT>
</BODY>
</HTML>
EXT
0;
}
# set to zero if your front-end cache has low memory
my $download_streaming_caching = 0;
......@@ -489,6 +506,7 @@ qq{<span class="footer_links"><a href="$BASE?manpath=$m">home</a> | <a href="$BA
print &cgi_style::html_footer;
}
else {
pr_copyright();
print "</body>\n</html>\n";
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment