summaryrefslogtreecommitdiff
path: root/FS/FS/UI
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/UI')
-rw-r--r--FS/FS/UI/Web/small_custview.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/FS/FS/UI/Web/small_custview.pm b/FS/FS/UI/Web/small_custview.pm
index 4c705c159..079ae9368 100644
--- a/FS/FS/UI/Web/small_custview.pm
+++ b/FS/FS/UI/Web/small_custview.pm
@@ -112,5 +112,18 @@ sub small_custview {
$html;
}
+#bah. don't want to pull in all of FS::CGI, that's the whole problem in the
+#first place
+sub ntable {
+ my $col = shift;
+ my $cellspacing = shift || 0;
+ if ( $col ) {
+ qq!<TABLE BGCOLOR="$col" BORDER=0 CELLSPACING=$cellspacing>!;
+ } else {
+ '<TABLE BORDER CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999">';
+ }
+
+}
+
1;