Skip to content

Commit

Permalink
Fix a bug in service-context.xml to close #2. Adjust the test share-c…
Browse files Browse the repository at this point in the history
…onfig-custom.xml which was preventing proper admin console functionality when the Share war was run as an integration test.
  • Loading branch information
jpotts committed Mar 29, 2015
1 parent 842f760 commit 562aa7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<!-- Overriding this bean to restrict createSite permissions -->
<bean id="SiteService_security" class="org.alfresco.repo.security.permissions.impl.acegi.MethodSecurityInterceptor">
<property name="authenticationManager"><ref bean="authenticationManager"/></property>
<property name="accessDecisionManager"><ref local="accessDecisionManager"/></property>
<property name="afterInvocationManager"><ref local="afterInvocationManager"/></property>
<property name="accessDecisionManager"><ref bean="accessDecisionManager"/></property>
<property name="afterInvocationManager"><ref bean="afterInvocationManager"/></property>
<property name="objectDefinitionSource">
<value>
org.alfresco.service.cmr.site.SiteService.cleanSitePermissions=ACL_NODE.0.sys:base.ReadProperties
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<alfresco-config>

<!--
<config evaluator="string-compare" condition="WebFramework">
<web-framework>
<autowire>
Expand All @@ -8,7 +8,7 @@
<disable-resource-caching>true</disable-resource-caching>
</web-framework>
</config>

-->

<!-- Global config section -->
<config replace="true">
Expand Down

0 comments on commit 562aa7f

Please sign in to comment.