Reviewed: https://reviews.mahara.org/7455 Committed: https://git.mahara.org/mahara/mahara/commit/3c93b65c9aac53b7c38e14ea85ad9efaec1c4304 Submitter: Robert Lyon (robe...@catalyst.net.nz) Branch: master
commit 3c93b65c9aac53b7c38e14ea85ad9efaec1c4304 Author: Niranjan Bandi <niranjanba...@catalyst.net.nz> Date: Wed Feb 15 10:19:11 2017 +1300 Bug 1655456: Behat test to check collections shared with group Testing that sharing a collection with a group shows on group homepage list Change-Id: I30c5a2d6fe9dee0016a70416395b8e3abe4b40d5 -- You received this bug notification because you are a member of Mahara Contributors, which is subscribed to Mahara. Matching subscriptions: Subscription for all Mahara Contributors -- please ask on #mahara-dev or mahara.org forum before editing or unsubscribing it! https://bugs.launchpad.net/bugs/1655456 Title: Sharing collection with a group not showing on group homepage list Status in Mahara: Fix Released Status in Mahara 15.10 series: Fix Released Status in Mahara 16.04 series: Fix Released Status in Mahara 16.10 series: Fix Released Bug description: Sometimes when a user shares a collection with a group they belong to that collection doesn't show in the list for 'Collections shared with this group' in the Group pages block. The reason for this is because the sql for the list only fetches the collection_view page with displayorder = 0 This is so it fetches the first page so can get the url for collection and also limit the results to once per collection. The problem occurs when one deletes the first page from a collection via the edit collections views page. It doesn't reset the collection views display order and so there is no displayorder = 0 A workaround for this could be to change the line in lib/view.php for get_sharedcollections_data() from AND (cv.displayorder = 0 OR cv.displayorder IS NULL) to AND (cv.displayorder = (SELECT MIN(displayorder) FROM collection_view WHERE collection = c.id) OR cv.displayorder IS NULL) where it fetches the minimum display order value Or fix up the deletion of views from collection so that the displayorder is reset correctly To manage notifications about this bug go to: https://bugs.launchpad.net/mahara/+bug/1655456/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~mahara-contributors Post to : mahara-contributors@lists.launchpad.net Unsubscribe : https://launchpad.net/~mahara-contributors More help : https://help.launchpad.net/ListHelp