Changeset 22640


Ignore:
Timestamp:
02/09/10 09:40:36 (17 months ago)
Author:
dbutano
Message:

Fixed bug on pathcontraintmultivalue

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/mnw21/pathquery_refactor/intermine/web/main/src/org/intermine/web/struts/TemplateAction.java

    r22637 r22640  
    277277                            String constraintValue = ""; 
    278278                            String multiValueAttribute = tf.getMultiValueAttribute(key); 
    279                             if(multiValueAttribute != null && "".equals(multiValueAttribute)) { 
     279                            if(multiValueAttribute != null && !("".equals(multiValueAttribute))) { 
    280280                                constraintValue = tf.getMultiValueAttribute(key); 
    281281                            } else { 
Note: See TracChangeset for help on using the changeset viewer.