MDL-65069 mod_forum: moodle_url to ensure we call the correct post.php
[moodle.git] / admin / upgrade.txt
blob638a30c3cf306d21e2d887cacb13cba8e8eaa360
1 This files describes API changes in /admin/*.
3 === 3.7 ===
5 * Admin setting "Allow blocks to use the dock" (allowblockstodock) has been removed & stings deprecated.
6   Docking of blocks is no longer supported within the core themes (Boost, Classic).
7   Please see MDL-64506 for further details.
9 === 3.3 ===
11 * The admin settings admin_setting_configselect and admin_setting_configmultiselect now support the optgroup tag.
12   Grouping of options can be created with this new tag.
13   For using it, the option parameters needs the Group names as indexes:
14   [
15     "Spain" =>  ["madrid" => "Madrid", "barcelona" => "Barcelona"],
16     "France" => ["paris" => "Paris", "marseille" => "Marseille"],
17   ]
19 === 3.2 ===
21 * Admin settings have been refined to better support right-to-left languages. In RTL,
22   most fields should not have their direction flipped, a URL, a path to a file, ...
23   are always displayed LTR. The admin setting will now best guess if they should be
24   RTLized based on their PARAM_* type. To override that guess, use
25   admin_setting::set_force_ltr(true/false).