Changeset 3534
- Timestamp:
- Jun 28, 2007, 2:53:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/util/ContextUtil.java
r3438 r3534 72 72 if (!plugin.requiresConfiguration()) 73 73 { 74 results.add(new ContextResult(sc, plugin, null, context, currentItem)); 75 } 76 if (pluginQuery != null && plugin.supportsConfigurations()) 74 ContextResult contextResult = new ContextResult(sc, plugin, null, context, currentItem); 75 if (contextResult.isInContext()) 76 { 77 results.add(contextResult); 78 } 79 } 80 if (configQuery != null && plugin.supportsConfigurations()) 77 81 { 78 82 configQuery.setParameter("plugin", plugin.getId(), Type.INT);
Note: See TracChangeset
for help on using the changeset viewer.