X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FPrefs%2FSearch.html;h=3f2c404cfe1ff5cbade5df76267340cf0e8931ad;hb=0ea23112cfa0d82738b0f08d60d90579721b7524;hp=42aa16bbfa2aa98646cfc154209bed215576f894;hpb=a6fe07e49e3fc12169e801b1ed6874c3a5bd8500;p=freeside.git diff --git a/rt/share/html/Prefs/Search.html b/rt/share/html/Prefs/Search.html index 42aa16bbf..3f2c404cf 100644 --- a/rt/share/html/Prefs/Search.html +++ b/rt/share/html/Prefs/Search.html @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -68,6 +68,14 @@ +<&|/Widgets/TitleBox, title => loc("Reset") &> +
+ + + +
+ + <%INIT> my @actions; my $title = loc("Customize").' '; @@ -81,7 +89,14 @@ Abort('No search specified') my $search = $class->new ($session{'CurrentUser'}); $search->LoadById ($id); -$title .= loc ($search->Description, loc ('"N"')); + +# If we are resetting prefs, do so before attempting to load them +if ($ARGS{'Reset'}) { + my ($ok, $msg) = $session{'CurrentUser'}->UserObj->DeletePreferences($ARGS{name}); + push @actions, $ok ? loc('Preferences reset.') : $msg; +} + +$title .= loc (RT::SavedSearch->EscapeDescription($search->Description), loc ('"N"')); my $user = $session{'CurrentUser'}->UserObj; my $SearchArg = $user->Preferences($search, $search->Content); $ARGS{Order} = (ref $ARGS{Order} ? join('|',grep {/\S/} @{$ARGS{Order}}) : $ARGS{Order});