View | Details | Raw Unified | Return to bug 12660
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
//<![CDATA[
10
//<![CDATA[
11
11
12
// Prepare array of all column headers, incrementing each index by
12
// Prepare array of all column headers, incrementing each index by
13
// two to accomodate control and title columns
13
// two to accommodate control and title columns
14
var allColumns = new Array([% FOREACH item_header_loo IN item_header_loop %]'[% loop.count %]'[% UNLESS ( loop.last ) %],[% END %][% END %]);
14
var allColumns = new Array([% FOREACH item_header_loo IN item_header_loop %]'[% loop.count %]'[% UNLESS ( loop.last ) %],[% END %][% END %]);
15
for( x=0; x<allColumns.length; x++ ){
15
for( x=0; x<allColumns.length; x++ ){
16
  allColumns[x] = Number(allColumns[x]) + 2;
16
  allColumns[x] = Number(allColumns[x]) + 2;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt (-2 / +1 lines)
Lines 11-17 Link Here
11
//<![CDATA[
11
//<![CDATA[
12
12
13
// Prepare array of all column headers, incrementing each index by
13
// Prepare array of all column headers, incrementing each index by
14
// two to accomodate control and title columns
14
// two to accommodate control and title columns
15
var allColumns = new Array([% FOREACH item_header_loo IN item_header_loop %]'[% loop.count %]'[% UNLESS ( loop.last ) %],[% END %][% END %]);
15
var allColumns = new Array([% FOREACH item_header_loo IN item_header_loop %]'[% loop.count %]'[% UNLESS ( loop.last ) %],[% END %][% END %]);
16
for( x=0; x<allColumns.length; x++ ){
16
for( x=0; x<allColumns.length; x++ ){
17
  allColumns[x] = Number(allColumns[x]) + 2;
17
  allColumns[x] = Number(allColumns[x]) + 2;
18
- 

Return to bug 12660