Changeset 5391
- Timestamp:
- Aug 18, 2010, 11:55:17 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/PropertyValue.java
r5384 r5391 177 177 if (dc == null && item instanceof BasicItem) 178 178 { 179 dc =((BasicItem)item).getDbControl();179 return ((BasicItem)item).getDbControl(); 180 180 } 181 181 return dc; … … 269 269 { 270 270 Object item = getItem(); 271 Object value = null; 272 String ID = getDbcontrol().getSessionControl().getId(); 271 Object value = null; 272 DbControl dc = getDbcontrol(); 273 String ID = dc.getSessionControl().getId(); 273 274 274 275 if (item != null) 275 276 { 276 277 PropertyPath propertyPath = getPropertyPath(item, getProperty()); 277 value = propertyPath.getValue( getDbcontrol(), item);278 value = propertyPath.getValue(dc, item); 278 279 } 279 280 if (value instanceof Removable)
Note: See TracChangeset
for help on using the changeset viewer.