From: Sven Schöling Date: Mon, 21 Mar 2016 17:50:05 +0000 (+0100) Subject: TopQuickSearch: qw() -> liste, zum einfachen auskommentieren X-Git-Tag: release-3.4.1~286 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=c8c1042a337f37b85c1dc3d550e3cbd7bc57e9d8;p=kivitendo-erp.git TopQuickSearch: qw() -> liste, zum einfachen auskommentieren --- diff --git a/SL/Controller/TopQuickSearch.pm b/SL/Controller/TopQuickSearch.pm index 0a4c4b6b7..8c6661e83 100644 --- a/SL/Controller/TopQuickSearch.pm +++ b/SL/Controller/TopQuickSearch.pm @@ -11,13 +11,13 @@ use Rose::Object::MakeMethods::Generic ( 'scalar --get_set_init' => [ qw(module js) ], ); -my @available_modules = qw( - SL::Controller::TopQuickSearch::Article - SL::Controller::TopQuickSearch::Part - SL::Controller::TopQuickSearch::Service - SL::Controller::TopQuickSearch::Assembly - SL::Controller::TopQuickSearch::Contact - SL::Controller::TopQuickSearch::GLTransaction +my @available_modules = ( + 'SL::Controller::TopQuickSearch::Article', + 'SL::Controller::TopQuickSearch::Part', + 'SL::Controller::TopQuickSearch::Service', + 'SL::Controller::TopQuickSearch::Assembly', + 'SL::Controller::TopQuickSearch::Contact', + 'SL::Controller::TopQuickSearch::GLTransaction', ); my %modules_by_name;