From 87adc9573ff21ce234ecd9dff6c308bee6764a91 Mon Sep 17 00:00:00 2001 From: "rginda%netscape.com" Date: Mon, 17 Sep 2001 18:58:14 +0000 Subject: [PATCH] patch from Pavel Hlavnicka pavel@gingerall.cz fix ordering of user footer and menu --- webtools/apidoc/parse_apidoc.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webtools/apidoc/parse_apidoc.pl b/webtools/apidoc/parse_apidoc.pl index 8840ebf496d1..738a30ebd1d4 100644 --- a/webtools/apidoc/parse_apidoc.pl +++ b/webtools/apidoc/parse_apidoc.pl @@ -954,8 +954,9 @@ sub close_toc { local (*G) = shift; my $menu = shift; - print G "" . $user_foot; + print G "\n"; print G &get_menu($menu) . "

\n"; + print G $user_foot . "\n"; print G $footstr; close G;