Merge r3112 bugfix from branch/WebGUI-7.1 re Matrix assets not correctly

propagating their permissions to newly-created listing Collaboration Systems.
This commit is contained in:
Drake 2006-11-01 19:14:24 +00:00
parent 09c4af8ad7
commit 84b3bd9003
2 changed files with 5 additions and 4 deletions

View file

@ -42,6 +42,7 @@
- fix: Unlock tag - fix: Unlock tag
- Added some additional indicies for slightly better performance. - Added some additional indicies for slightly better performance.
- fix: PM resource search popup has no scrollbars - fix: PM resource search popup has no scrollbars
- fix: Matrix listings create CS assets with wrong permissions
7.1.2 7.1.2
- Fixed a bug where logging in/out would cause a blank page display. - Fixed a bug where logging in/out would cause a blank page display.

View file

@ -702,8 +702,8 @@ sub www_editListingSave {
title=>$productName, title=>$productName,
menuTitle=>$productName, menuTitle=>$productName,
url=>$productName, url=>$productName,
groupIdView=>7, groupIdView=>$self->get('groupIdView'),
groupIdEdit=>3, groupIdEdit=>$self->get('groupIdEdit'),
displayLastReply => 0, displayLastReply => 0,
allowReplies => 1, allowReplies => 1,
threadsPerPage => 30, threadsPerPage => 30,
@ -729,8 +729,8 @@ sub www_editListingSave {
approvalWorkflow=>"pbworkflow000000000003", approvalWorkflow=>"pbworkflow000000000003",
karmaRatingMultiplier => 0, karmaRatingMultiplier => 0,
moderatePosts => 0, moderatePosts => 0,
moderateGroupId => '4', moderateGroupId => $self->get('groupIdEdit'),
postGroupId => '7', postGroupId => $self->get('groupIdView'),
styleTemplateId => $self->get('styleTemplateId'), styleTemplateId => $self->get('styleTemplateId'),
printableStyleTemplateId => $self->get('printableStyleTemplateId'), printableStyleTemplateId => $self->get('printableStyleTemplateId'),
}); });