Skip to content

Commit faee3ec

Browse files
committed
Merge branch 'main' into 5.0
# Conflicts: # migrations/44-50/new-deprecations.md
2 parents cf6b876 + a532804 commit faee3ec

File tree

4 files changed

+190
-172
lines changed

4 files changed

+190
-172
lines changed

docs/common-errors/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Some frequently asked questions on Error messages and how to resolve them.
88

99
As a developer you somtimes will be stuck in your code.
1010
If it happens to you, also have a look on https://joomla.stackexchange.com/ - a huge collection of valuable knowledge.
11-
Here we collect some frequently aske questions.
11+
Here we collect some frequently asked questions.
1212

1313
Class [..] not found
1414
--------------------
1515

16-
You need to understand the namespace concept as described in sction General Concepts (work in progress)
16+
You need to understand the namespace concept as described in section General Concepts (work in progress)
1717
Then check:
1818
- Is the namespace defined in your manifest file?
1919
- Has every class in your extension the correct namespace?

migrations/44-50/new-deprecations.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,27 @@ New deprecations
66
================
77
All the new deprecations that should be aware of and what you should now be using instead.
88

9+
:::caution TODO
10+
11+
This page is unfinished, please use the **Edit this Page** link at the bottom of this page to help make it more useful.
12+
13+
:::
14+
15+
916
# Language strings
1017

1118
File: administrator/language/en-GB/com_joomlaupdate.ini
1219
Strings: INSTL_MB_STRING_OVERLOAD_OFF, INSTL_NOTICEMBSTRINGOVERLOAD
1320

1421
File: installation/language/en-GB/joomla.ini
1522
Strings: INSTL_MB_STRING_OVERLOAD_OFF, INSTL_NOTICE_MBSTRING_OVERLOAD_OFF
23+
24+
#### The item_associations property of the WebApplication class is deprecated
25+
26+
File: libraries/src/Application/WebApplication.php
27+
Replacement: The $item_associations property will be removed with no replacement as it is not used in core anymore.
28+
29+
#### Privacy plugin app property is deprecated
30+
31+
File: administrator/components/com_privacy/src/Plugin/PrivacyPlugin.php
32+
Replacement: The `$this->app` property is deprecated in the privacy plugins. Instead of use `$this->getApplication()` when the plugin is converted to service providers.

0 commit comments

Comments
 (0)