&My::Web::footer call is deprecated now, use just: exit;
[MyWeb.git] / HaveJS.pm
index b68c554..6b8230d 100644 (file)
--- a/HaveJS.pm
+++ b/HaveJS.pm
@@ -30,12 +30,13 @@ our $HTML_TEST=0;
 
 sub handler
 {
-my $W=My::Web->init();
-
-
-# Do not: My::Web->heading();
+my $W=My::Web->init(
+               "header_only"=>1,
+               );
+My::Web->heading();
 $W->{"r"}->content_type("text/javascript");
 
+
 # Prevent redirection of some top (referring) foreign webpage as it
 # may not pass "have_js=1" to us anyway. (for example Google cache)
 print ""
@@ -62,7 +63,6 @@ print <<'HERE';
 HERE
 
 
-# Do not: My::Web->footer();
-exit 0;
+exit;
 }
 1;