Ignore:
Timestamp:
Feb 8, 2008, 11:54:05 AM (15 years ago)
Author:
Nicklas Nordborg
Message:

References #868: Support for chips with multiple arrays

Fixed some input problems on Labeled extracts tab

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/views/hybridizations/index.jsp

    r4131 r4133  
    192192        String[] extra = request.getParameter("L"+leId).split(":");
    193193        Float usedQuantity = Values.getFloat(extra[0], null);
    194         int arrayIndex = Values.getInt(extra[1], 1);
     194        int arrayIndex = extra.length > 1 ? Values.getInt(extra[1], 1) : 1;
    195195        creationEvent.addSource(le, usedQuantity);
    196196        creationEvent.setSourceGroup(le, arrayIndex);
Note: See TracChangeset for help on using the changeset viewer.