Changeset 4203


Ignore:
Timestamp:
Apr 2, 2008, 9:43:49 AM (15 years ago)
Author:
Nicklas Nordborg
Message:

Fixes #963: New hybridization... button on labelled extract page doesn't work as expected

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.6-stable/www/views/hybridizations/edit_hybridization.jsp

    r4147 r4203  
    150150      }
    151151    }
    152    
     152    else if (request.getParameter("labeledextract_id") != null)
     153    {
     154      int leId = Values.getInt(request.getParameter("labeledextract_id"));
     155      labeledExtractsQuery = LabeledExtract.getQuery();
     156      labeledExtractsQuery.include(Include.ALL);
     157      labeledExtractsQuery.restrict(Restrictions.eq(Hql.property("id"),
     158        Expressions.integer(leId)));
     159    }
    153160  }
    154161  else
Note: See TracChangeset for help on using the changeset viewer.