]> git.etc.gen.nz Git - spong.git/commitdiff
added code to default $WWW_TITLE_SIZE if not defined
authorStephen L Johnson <sjohnson@monsters.org>
Tue, 21 Nov 2000 18:27:07 +0000 (18:27 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Tue, 21 Nov 2000 18:27:07 +0000 (18:27 +0000)
src/www-spong.pl

index 9cafc25a7c5f4fcf546e2943f0b27d3d53417d9b..077b1e5329ba1e35ef08d6998241ae21f8e2cdb1 100755 (executable)
@@ -12,7 +12,7 @@
 # (3) Re-did as a client which gets info from the spong-server (07/24/1997)
 # (4) Did a whole bunch of stuff (Ed Hill, 06/18/1998)
 #
-# $Id: www-spong.pl,v 1.18 2000/11/15 17:25:29 sljohnson Exp $
+# $Id: www-spong.pl,v 1.19 2000/11/21 18:27:07 sljohnson Exp $
 
 use Sys::Hostname;
 use Getopt::Long;
@@ -178,10 +178,13 @@ exit(0);
 
 sub toplevel {
 
+   # Default to a reasonable value if not defined.
+   $main::WWW_TITLE_SIZE = 40 if( $main::WWW_TITLE_SIZE <= 0 ); 
+
    print "Content-type: text/html\n\n";
    print "<html><head>\n";
    print "<title>Spong v$SPONGVER - System Status Monitor</title></head>\n";
-   print "<frameset rows=\"$main::WWW_FRAME_SIZE,*\" border=5 frameboard=no>";
+   print "<frameset rows=\"$main::WWW_TITLE_SIZE,*\" border=5 frameboard=no>";
    print "<frame src=\"$main::WWWSPONG/title\" marginwidth=5 ";
    print "marginheight=5 noshade name=\"title\">\n";
    print "<frame src=\"";