Lines 74-82
if ( $action eq 'save' ) {
Link Here
|
74 |
if ( $action eq 'list' ) { |
74 |
if ( $action eq 'list' ) { |
75 |
my $modules = C4::Utils::DataTables::TablesSettings::get_modules; |
75 |
my $modules = C4::Utils::DataTables::TablesSettings::get_modules; |
76 |
$template->param( |
76 |
$template->param( |
77 |
panel => defined $input->param('module') ? $input->param('module') : undef, |
77 |
panel => scalar $input->param('module'), |
78 |
page => defined $input->param('page') ? $input->param('page') : undef, |
78 |
page => scalar $input->param('page'), |
79 |
table => defined $input->param('table') ? $input->param('table') : undef, |
79 |
table => scalar $input->param('table'), |
80 |
modules => $modules, |
80 |
modules => $modules, |
81 |
); |
81 |
); |
82 |
} |
82 |
} |
83 |
- |
|
|