diff options
author | ivan <ivan> | 2011-06-12 17:49:58 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-06-12 17:49:58 +0000 |
commit | 0bd8eec166e6e83d167b9d26fc1d7fc42cf854a5 (patch) | |
tree | b915082c036ff86f26bc35db0293fa641d847269 /httemplate/elements | |
parent | 25b7e534913116a6a474f97051fd1a27d27bae5c (diff) |
fix popup bgcolor
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/header-popup.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/header-popup.html b/httemplate/elements/header-popup.html index 14ddc6871..12fe88ea8 100644 --- a/httemplate/elements/header-popup.html +++ b/httemplate/elements/header-popup.html @@ -55,7 +55,7 @@ if ( ref($_[0]) ) { $etc = @_ ? shift : ''; #$etc is for things like onLoad= etc. $head = @_ ? shift : ''; #$head is for things that go in the <HEAD> section } -$etc .= 'BGCOLOR="#f8f8f8"' if (! $etc =~ /BGCOLOR/i ); +$etc .= 'BGCOLOR="#f8f8f8"' unless $etc =~ /BGCOLOR/i; my $conf = new FS::Conf; |