X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Fcust_main.html;h=0a43a82ddc1961d8ff6de24b2e4725e718dc5496;hb=7ecaf988ed810746534bf85abde34022f2b5d6b2;hp=d9499e9b08bad3b8d5bded741f4336a72d0316c6;hpb=467d7dc761ec4492aa285771920be1def76ea831;p=freeside.git diff --git a/httemplate/search/cust_main.html b/httemplate/search/cust_main.html index d9499e9b0..0a43a82dd 100755 --- a/httemplate/search/cust_main.html +++ b/httemplate/search/cust_main.html @@ -13,10 +13,10 @@ \&FS::UI::Web::cust_fields, @extra_fields, ], - #'sort_fields' => [ - # FS::UI::Web::cust_sort_fields(), - # @extra_sort_fields, - #], + 'sort_fields' => [ + FS::UI::Web::cust_sort_fields(), + @extra_sort_fields, + ], 'color' => [ FS::UI::Web::cust_colors(), map '', @extra_fields ], @@ -140,8 +140,14 @@ my $menubar = []; if ( $FS::CurrentUser::CurrentUser->access_right('Bulk send customer notices') ) { + # URI::query_from does not support hashref + # results in: ...&contacts=HASH(0x55e16cb81da8)&... + my %query_hash = %search_hash; + delete $query_hash{contacts} + if exists $query_hash{contacts} && ref $query_hash{contacts}; + my $uri = new URI; - $uri->query_form( \%search_hash ); + $uri->query_form( \%query_hash ); my $query = $uri->query; push @$menubar, emt('Email a notice to these customers') =>