Details
Description
While applying SAK-16600 patch to our installation we found a slight problem:
When specifying a preselected tool in the file toolOrder.xml for example:
<tool id="sakai.lessonbuildertool" selected="true"/>
The selection will not take effect.
We found it to be due to a simple "copy-paste" mistake in the source code.
However our copy of the source seemed to be an old branch, therefore, this change might already be integrated in your sakai version.
For more details a patch called SAK-16600-preselection-fix.patch is attached:
Index: kernel/kernel-impl/src/main/java/org/sakaiproject/component/impl/BasicConfigurationService.java
===================================================================
— kernel/kernel-impl/src/main/java/org/sakaiproject/component/impl/BasicConfigurationService.java (revision 157)
+++ kernel/kernel-impl/src/main/java/org/sakaiproject/component/impl/BasicConfigurationService.java (working copy)
@@ -940,7 +940,7 @@
*/
public boolean toolGroupIsSelected(String groupName, String toolId)
{
- List selList = (List) m_toolGroupRequired.get(groupName);
+ List selList = (List) m_toolGroupSelected.get(groupName);
if (selList == null)
Gliffy Diagrams
Zeplin
Attachments
Issue Links
- depends on
-
SAK-16600 Improve layout/organization of tools in site-info
-
- Verified
-