-
Bug
-
Resolution: Fixed
-
Minor
-
3.0.2
-
None
-
MOODLE_30_STABLE
-
MOODLE_30_STABLE
In various places the filter that is used for fetching entries is cloned so as to use it for interim queries and avoid impacting the main query. Currently it uses the php clone method which only perform shallow cloning. Consequently, some changes made to the filter in interim queries affect the main query. Deep cloning is required.