diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2013-09-06 01:51:11 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2013-09-06 01:51:11 -0700 |
| commit | 57d9974e8e0164453ad7e6b5df4cd8cd78897ef0 (patch) | |
| tree | dbf978c43f6da238c3612524e79137f1aec5da8a /fs_selfservice/FS-SelfService/cgi/myaccount_menu.html | |
| parent | b10deb15ae594cc85eef8db967784fed1fa8ec8f (diff) | |
fix agent-virtualization of logos and other images in self-service, RT#23218
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/myaccount_menu.html')
| -rw-r--r-- | fs_selfservice/FS-SelfService/cgi/myaccount_menu.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html b/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html index 7d1a5f793..38e525772 100644 --- a/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html +++ b/fs_selfservice/FS-SelfService/cgi/myaccount_menu.html @@ -7,7 +7,7 @@ <%= if ( $menu_top_image ) { - $OUT .= '<TR><TD STYLE="padding:0px"><IMG SRC="image.cgi?menu_top_image"></TD></TR>'; + $OUT .= '<TR><TD STYLE="padding:0px"><IMG SRC="image.cgi?name=menu_top_image;agentnum='. $agentnum. '"></TD></TR>'; } my @menu = ( @@ -106,11 +106,11 @@ foreach my $item ( @menu ) { if ( $menu_body_image ) { if ( exists $item->{'url'} && $action eq $item->{'url'} ) { $OUT .= #' BGCOLOR="'. ( $body_bgcolor || '#eeeeee' ). '" '. - ' STYLE="background: url(image.cgi?menu_body_image) 0 bottom; '. + ' STYLE="background: url(image.cgi?name=menu_body_image;agentnum='. $agentnum. ') 0 bottom; '. ' color:#3366CC"; '. #XXX config ' " '; } else { - $OUT .= ' STYLE="background: url(image.cgi?menu_body_image) 0 bottom" '; + $OUT .= ' STYLE="background: url(image.cgi?name=menu_body_imagei;agentnum='. $agentnum. ') 0 bottom" '; } } else { if ( exists $item->{'url'} && $action eq $item->{'url'} ) { @@ -151,7 +151,7 @@ foreach my $item ( @menu ) { } if ( $menu_bottom_image ) { - $OUT .= '<TR><TD STYLE="padding:0px"><IMG SRC="image.cgi?menu_bottom_image"></TD></TR>'; + $OUT .= '<TR><TD STYLE="padding:0px"><IMG SRC="image.cgi?name=menu_bottom_image;agentnum='. $agentnum. '"></TD></TR>'; } else { $OUT .= '<TR><TD STYLE="border-right: 1px solid black" HEIGHT="100%"><BR><BR><BR><BR></TD></TR>'; } |
