summaryrefslogtreecommitdiff
path: root/FS/FS/UI
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-04-29 20:38:20 -0700
committerIvan Kohler <ivan@freeside.biz>2012-04-29 20:38:20 -0700
commitcace6fef1d121d43d76166851aaa30c6c15857e5 (patch)
tree128bfd38b7f86146a43ee91766d2cd3c14f32dd5 /FS/FS/UI
parent393e72e0d1897abda343aa7f9287046e5446069b (diff)
self-service small_custview obeys selfservice-box_color and selfservice-text_color now, RT#17534
Diffstat (limited to 'FS/FS/UI')
-rw-r--r--FS/FS/UI/Web/small_custview.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/FS/FS/UI/Web/small_custview.pm b/FS/FS/UI/Web/small_custview.pm
index 36dd30c..53a3b5e 100644
--- a/FS/FS/UI/Web/small_custview.pm
+++ b/FS/FS/UI/Web/small_custview.pm
@@ -29,7 +29,7 @@ sub small_custview {
: qsearchs('cust_main', { 'custnum' => $arg } )
or die "unknown custnum $arg";
- my $html;
+ my $html = '<DIV ID="fs_small_custview">';
$html = qq!View <A HREF="$url?! . $cust_main->custnum . '">'
if $url;
@@ -129,6 +129,8 @@ sub small_custview {
# last payment might be good here too?
+ $html .= '</DIV>';
+
$html;
}