From: Sven Schöling Date: Thu, 15 Feb 2018 10:00:34 +0000 (+0100) Subject: TopQuickSearch::Contact: fragment statt hash für for_url X-Git-Tag: release-3.5.4~458 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=fc9548f80c87327eed8f20c796579a9452b0c616;p=kivitendo-erp.git TopQuickSearch::Contact: fragment statt hash für for_url --- diff --git a/SL/Controller/TopQuickSearch/Contact.pm b/SL/Controller/TopQuickSearch/Contact.pm index 9ffb5f685..b3e0d9ed4 100644 --- a/SL/Controller/TopQuickSearch/Contact.pm +++ b/SL/Controller/TopQuickSearch/Contact.pm @@ -58,7 +58,7 @@ sub select_autocomplete { my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{id}); - SL::Controller::CustomerVendor->new->url_for(action => 'edit', id => $contact->cp_cv_id, contact_id => $contact->cp_id, db => db_for_contact($contact), hash => 'contacts'); + SL::Controller::CustomerVendor->new->url_for(action => 'edit', id => $contact->cp_cv_id, contact_id => $contact->cp_id, db => db_for_contact($contact), fragment => 'contacts'); } sub do_search {