X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FAdmin%2FGlobal%2FMyRT.html;h=0a62d23f654b096c7c5db08e0cc2b7b733cb47c4;hb=e131b1f71f08b69abb832c1687d1f29682d171f8;hp=d903553e44dd9190cda39072513537a8faef7fbe;hpb=d05d7346bb2387fd9d0354923d577275c5c7f019;p=freeside.git diff --git a/rt/share/html/Admin/Global/MyRT.html b/rt/share/html/Admin/Global/MyRT.html index d903553e4..0a62d23f6 100644 --- a/rt/share/html/Admin/Global/MyRT.html +++ b/rt/share/html/Admin/Global/MyRT.html @@ -48,13 +48,11 @@ <& /Admin/Elements/Header, Title => loc("RT at a glance") &> <& /Elements/Tabs &> -<& /Widgets/SelectionBox:header, nojs => 1 &> - <& /Elements/ListActions, actions => \@actions &>
% for my $pane (@panes) { <&|/Widgets/TitleBox, title => loc('RT at a glance').': '.loc($pane->{Name}), bodyclass => "" &> -<& /Widgets/SelectionBox:show, self => $pane, nojs => 1 &> +<& /Widgets/SelectionBox:show, self => $pane &>
% } <%init> @@ -86,7 +84,7 @@ my @panes = $m->comp( '/Admin/Elements/ConfigureMyRT', panes => [ 'body', #loc - 'summary', #loc + 'sidebar', #loc ], Action => 'MyRT.html', items => \@items, @@ -95,7 +93,7 @@ my @panes = $m->comp( OnSave => sub { my ( $conf, $pane ) = @_; if (!$has_right) { - push @actions, loc( 'Permission denied' ); + push @actions, loc( 'Permission Denied' ); } else { $default_portlets->SetContent( $conf ); @@ -104,7 +102,7 @@ my @panes = $m->comp( } ); -$m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_, nojs => 1 ) +$m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_ ) for @panes;