Andrew Nicols
ce863c2d3f
Merge branch 'MDL-77180' of https://github.com/paulholden/moodle
2023-07-09 22:13:51 +08:00
Andrew Nicols
f7c52739c0
MDL-73239 core_my: Fix coverage
2023-07-09 22:12:10 +08:00
Andrew Nicols
c472ba4738
Merge branch 'MDL-73239-master' of https://github.com/rmady/moodle
2023-07-09 22:02:22 +08:00
Andrew Nicols
14029657a7
MDL-76717 question: Coding style fixes
2023-07-09 21:59:13 +08:00
Andrew Nicols
05a8ac58db
Merge branch 'MDL-76717_master' of https://github.com/marxjohnson/moodle
2023-07-08 13:01:47 +08:00
Paul Holden
20280c0405
MDL-77180 customfield: allow entry of formatted category names.
...
Change the param type of the category name when editing to allow
for entry of multilang tags, the formatting of which is already
supported when returning category name.
Co-authored-by: Hiroto Kagotani <hiroto.kagotani@gmail.com>
2023-07-07 14:59:44 +01:00
Jun Pataleta
73e90326d0
Merge branch 'MDL-78316-master' of https://github.com/andrewnicols/moodle
2023-07-07 18:56:07 +08:00
Andrew Nicols
3ff84d3eb7
MDL-78316 core: Improve jsdoc typedef for icons
2023-07-07 16:31:54 +08:00
Andrew Nicols
f57af194fb
MDL-78316 core: Update async promises
...
Writing a Promise as:
```
const promise = new Promise(async (resolve, reject) => {
return await 'foo';
});
```
Is equivalent to an IIFE:
```
const promise = (async () => {
return await 'foo';
})();
```
A recent change introduced by MDL-74301 picks this up.
This commit addresses this flagged issue.
2023-07-07 16:23:26 +08:00
Andrew Nicols
5b54ac43b1
MDL-78316 core: Move IconSystem init to Factory
...
This is throwback to times when we understood JS less.
We should not have the factory method for the IconSystem in
core/templates.
2023-07-07 16:13:28 +08:00
Andrew Nicols
c0043004e1
MDL-78316 core: Convert IconSystems to ESM
2023-07-07 16:13:27 +08:00
Ilya Tregubov
ef93325f27
weekly release 4.3dev
2023-07-07 11:52:14 +08:00
Ilya Tregubov
362f518966
NOBUG: Fixed SVG browser compatibility
2023-07-07 11:52:11 +08:00
Ilya Tregubov
c4142e01c8
Merge branch 'install_master' of https://git.in.moodle.com/amosbot/moodle-install
2023-07-07 11:52:11 +08:00
Sara Arjona
1e69127a22
Merge branch 'MDL-78391-master' of https://github.com/HuongNV13/moodle
2023-07-06 11:02:18 +02:00
Huong Nguyen
7add5faa9e
MDL-78391 atto_recordrtc: Fix recording issue with Chrome
2023-07-06 15:37:03 +07:00
Huong Nguyen
592e9590d0
MDL-78391 tiny_recordrtc: Fix recording issue with Chrome
2023-07-06 15:33:38 +07:00
Sara Arjona
53266c02c1
Merge branch 'MDL-77375-master-patch' of https://github.com/ilyatregubov/moodle
2023-07-06 10:11:46 +02:00
Ilya Tregubov
86d1a91fd6
MDL-77375 tool_dataprivacy: Fix menus going floaty.
2023-07-06 13:08:27 +08:00
Jun Pataleta
9c73441c4a
Merge branch 'MDL-78391-master' of https://github.com/andrewnicols/moodle
2023-07-06 11:59:04 +08:00
Ilya Tregubov
6773badd97
Merge branch 'MDL-76203' of https://github.com/liorgil/moodle
2023-07-06 11:29:54 +08:00
Jun Pataleta
d3767cb9f6
Merge branch 'MDL-78488' of https://github.com/t-schroeder/moodle
2023-07-06 11:17:03 +08:00
Ilya Tregubov
b924f68081
Merge branch 'MDL-69983-master' of https://github.com/davewoloszyn/moodle
2023-07-06 10:25:40 +08:00
Franziska Hübler
0458672a77
MDL-69983 backup: Save async backups in correct area.
2023-07-06 12:12:19 +10:00
Ilya Tregubov
39662f1e32
Merge branch 'MDL-78608' of https://github.com/timhunt/moodle
2023-07-06 09:56:37 +08:00
Jun Pataleta
c1de49bd6c
Merge branch 'MDL-78484-master' of https://github.com/NashTechOpenUniversity/moodle
2023-07-06 09:41:41 +08:00
Ilya Tregubov
94452ea194
Merge branch 'MDL-77375-master' of https://github.com/rezaies/moodle
2023-07-06 09:19:57 +08:00
Jun Pataleta
14d37a274e
Merge branch 'MDL-74893-master-fix_auto_login_guest' of https://github.com/praxisdigital/moodle
2023-07-06 09:14:29 +08:00
Ilya Tregubov
048edee1e2
Merge branch 'MDL-74301-master' of https://github.com/kabalin/moodle
2023-07-06 09:06:31 +08:00
Paul Holden
8049fa2b17
Merge branch 'MDL-78542-master' of https://github.com/junpataleta/moodle
2023-07-05 17:13:20 +01:00
Andrew Nicols
acbf2c0c1b
Merge branch 'MDL-78644' of https://github.com/paulholden/moodle
2023-07-05 22:10:16 +08:00
Andrew Nicols
545c7e3037
Merge branch 'MDL-77563-master' of https://github.com/rezaies/moodle
2023-07-05 22:06:21 +08:00
Andrew Nicols
cee81e21c1
Merge branch 'MDL-77599' of https://github.com/stronk7/moodle
2023-07-05 21:58:47 +08:00
Andrew Nicols
59d844b9cd
Merge branch 'MDL-78622' of https://github.com/timhunt/moodle
2023-07-05 21:55:54 +08:00
Andrew Nicols
e9b389f64b
Merge branch 'MDL-78637' of https://github.com/paulholden/moodle
2023-07-05 21:53:07 +08:00
Andrew Nicols
7929267880
Merge branch 'MDL-64152-master' of https://github.com/snake/moodle
2023-07-05 21:17:28 +08:00
Andrew Nicols
e1c9921d5d
Merge branch 'MDL-78614-master' of https://github.com/noeldemartin/moodle
2023-07-05 20:30:07 +08:00
Huong Nguyen
880fd8a253
Merge branch 'MDL-77055-master' of https://github.com/rmady/moodle
2023-07-05 15:00:37 +07:00
Ilya Tregubov
f8a65969a4
Merge branch 'MDL-78485-master' of https://github.com/stevandoMoodle/moodle
2023-07-05 11:51:23 +08:00
Andrew Nicols
2b19f23665
Merge branch 'MDL-78158-master' of https://github.com/andelacruz/moodle
2023-07-05 10:23:32 +08:00
Andrew Nicols
614514cdea
Merge branch 'MDL-77873-master' of https://github.com/lucaboesch/moodle
2023-07-05 09:55:13 +08:00
Ilya Tregubov
7ccab6d218
Merge branch 'MDL-48762-master' of https://github.com/sarjona/moodle
2023-07-05 08:55:45 +08:00
Paul Holden
85afb069a0
MDL-78644 files: more fault tolerant resizing of logos/icons.
...
If we cannot resize the given file (files such as ICO can't be, for
SVG it makes no sense), then we should just return the original file
as is rather than an error.
2023-07-05 00:54:03 +01:00
Luca Bösch
2c8b35dd23
MDL-77873 quiz: style the question number edit elements.
2023-07-04 23:25:16 +02:00
Andrew Nicols
619f6fc2ca
Merge branch 'MDL-73839-master-6' of https://github.com/ilyatregubov/moodle
2023-07-04 22:11:53 +08:00
Sara Arjona
9c51739570
Merge branch 'MDL-40084-master' of https://github.com/phmemmel/moodle
2023-07-04 13:58:41 +02:00
Huong Nguyen
54d470c313
Merge branch 'MDL-77732-master' of https://github.com/lameze/moodle
2023-07-04 17:10:26 +07:00
Stephan Robotta
1468ecf294
MDL-77732 navigation: fix active flag in navigation for custom menus
...
This is a follow up of MDL-75908 because a Behat tests with the Chrome
driver was failing and it could be traced back to the changes of
MDL-750908. There was no issue with the Firefox driver and
apparently no issue when using the Chrome browser under normal
circumstances.
2023-07-04 17:10:15 +07:00
Stephan Robotta
a617b9f6d7
MDL-77732 navigation: fix active flag in navigation for custom menus
2023-07-04 17:09:59 +07:00
Huong Nguyen
c2203091f3
Merge branch 'master_MDL77396_Fix' of https://github.com/Dineshdurai/moodle
2023-07-04 16:15:04 +07:00