X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FAdmin%2FGlobal%2FMyRT.html;h=04d316cff7a3b90664ebab6180eeb14ce7eaa60b;hb=de9d037528895f7151a9aead6724ce2df95f9586;hp=d903553e44dd9190cda39072513537a8faef7fbe;hpb=73a6a80a9ca5edbd43d139b7cb25bfee4abfd35e;p=freeside.git diff --git a/rt/share/html/Admin/Global/MyRT.html b/rt/share/html/Admin/Global/MyRT.html index d903553e4..04d316cff 100644 --- a/rt/share/html/Admin/Global/MyRT.html +++ b/rt/share/html/Admin/Global/MyRT.html @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -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;