-
Bug
-
Resolution: Fixed
-
Minor
-
3.1
-
MOODLE_31_STABLE
-
MOODLE_31_STABLE
-
wip-mdl-53564
-
MDL-52869 introduced xpath with //. which selects the current node under the dom tree. This seems to have worked fine for Firefox, but is not correct as
- // means: Selects nodes in the document from the current node that match the selection no matter where they are
- . means: Selects the current node
And they both will lead to wrong results. If you want to select any element from the current node then you should be using *.
- is a regression caused by
-
MDL-52869 Convert inline activity name edit to use the editabletitle element
- Closed