diff options
author | ivan <ivan> | 2002-01-30 14:18:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-01-30 14:18:09 +0000 |
commit | 1fd6d8cf5d7854860ef4fd10ed89828e0c04ec39 (patch) | |
tree | caee70f2707d97a43e21ea4253afe728ea6f421a /FS | |
parent | ea0d3938b57a079ce4aa6db0cae316e3ac6da654 (diff) |
remove
use Module;
and
$cgi = new CGI;
&cgisuidsetup();
from all templates. should work better under Mason.
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/CGI.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FS/FS/CGI.pm b/FS/FS/CGI.pm index c66bfe3c2..40932147e 100644 --- a/FS/FS/CGI.pm +++ b/FS/FS/CGI.pm @@ -168,9 +168,9 @@ Returns HTML tag for beginning a table. sub table { my $col = shift; if ( $col ) { - qq!<TABLE BGCOLOR="$col" BORDER=1 WIDTH="100%">!; + qq!<TABLE BGCOLOR="$col" BORDER=1 WIDTH="100%" CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999">!; } else { - "<TABLE BORDER=1>"; + '<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999">'; } } @@ -202,7 +202,7 @@ sub ntable { if ( $col ) { qq!<TABLE BGCOLOR="$col" BORDER=0 CELLSPACING=$cellspacing>!; } else { - "<TABLE BORDER>"; + '<TABLE BORDER CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999">'; } } |