- Jan 19, 2023
-
-
Georg Ringer authored
The ignore path must be an array. Resolves: #99646 Related: #99644 Releases: main Change-Id: Ie2f5e625a9850424b88907783237837e67ffdf67 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77502 Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org>
-
Henrik Ziegenhain authored
TranslateViewHelper needs to cast $id to string to avoid feeding an int to str_starts_with(). Resolves: #99637 Releases: main Change-Id: Icf432eed5b983daea4a8feafaa2e040d2a7aa7f0 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77495 Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com>
-
Georg Ringer authored
As the translations are shipped within the core, those files must not be translated via crowdin. Resolves: #99644 Related: #99618 Releases: main Change-Id: Iecafe06f15d1c6ad89f1fb848b03c98dc6af7e23 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77500 Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Benni Mack <benni@typo3.org>
-
Oliver Bartsch authored
Resolves: #99636 Releases: main Change-Id: Ibe663ca3c85693e90b14a6c6e9c1432f4a1812f5 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77494 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Benni Mack authored
As the hard-coded "/typo3/" path might change later, it is good to rely on the BackendEntryPointResolver for future development. Resolves: #99638 Releases: main Change-Id: I9cf0eb52bcb22a4656eddccf72eb8b1456a458d7 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75859 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Benni Mack authored
TYPO3 now supports loading a list of all countries of the world in all supported translations that TYPO3 has to offer - out of the box. For this, a dev-dependency "sokil/php-isocodes-db-i18n" package is used, which contains a list of all countries (ISO 3166-1), their short names, their official names in english, and optional translations. This package fetches the data from debian repositories and is updated automatically on the second day of each month. A new Build script then transfers the information and the translations (originally in PO files) via symfony/translation into a PHP class and XLF translations for country names ("France") and official country names ("French Republic"). The Build script is already prepared to also fetch language script codes in the future, along with languages and/or currencies as well. A new API (CountryProvider) is available which returns the countries, and prepared label strings to be used with TYPO3's language mechanism. A ViewHelper <f:form.countrySelect> is added which can be used in Fluid templates. Example: <f:form.countrySelect name="country" value="DE" sortByOptionLabel="true" prioritizedCountries="{0: 'DE', 1: 'AT', 2: 'CH'}"/> Resolves: #99618 Releases: main Change-Id: I8ed7b05ef59b4c7172045bcaa8a27dc626d39f65 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77470 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech>
-
Andreas Fernandez authored
This patch aims to migrate low-level helpers from jQuery to either native browser API or TYPO3 API, where applicable without major refactorings. Cases handled: * `$().ready()` * `$.each()` * `$.isArray()` * `$.when()` Resolves: #99575 Releases: main Change-Id: I9e72de4dbe3bb38d23a8c52212de72b2ffdb993c Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77394 Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org>
-
Andreas Fernandez authored
This patch migrates the inline editor used to modify a page's table to a standalone web component. This allows to cleanup the original `@typo3/backend/page-actions` module and to fix state cross-dependencies within said module. The whole functionality is considered to be used for internal purposes only. Therefore, the deprecated method `\TYPO3\CMS\Backend\Template\ModuleTemplate->header()` is not adjusted, rendering a very unlikely enabled page title editing unusable. Resolves: #99606 Releases: main Change-Id: Ib9fe9ff165280e52c7c775d8943225b34cb7dbff Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77466 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
Oliver Bartsch authored
A display bug of the element tree component is resolved by making the css definition more explicit, overwriting globally defined styles. Resolves: #99630 Related: #97036 Releases: main Change-Id: Ia040795fb9f784abee26743235d410d45f3c2be1 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77488 Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Frank Nägler <frank.naegler@typo3.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Frank Nägler <frank.naegler@typo3.com>
-
- Jan 18, 2023
-
-
Jasmina Ließmann authored
Always show options above other listings. Unify the appearance and placement of form fields within these options. Resolves: #99583 Releases: main Change-Id: If56ca25889cd1216d7ec37468f8247bcaf532fbd Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77454 Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-
Jasmina Ließmann authored
There are some cases where an infobox is shown to make the editor choosing a page in the page tree. With this change a unifed wording is used. Resolves: #99623 Releases: main Change-Id: I3ddc922967458136d76df20310d4d6e663fca653 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77486 Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Stefan Bürk <stefan@buerk.tech>
-
Anja Leichsenring authored
After years of refactoring, TYPO3 core finally removes a last usage of GeneralUtility::_GPmerged() which is an anti-pattern method, since it accesses $_GET and $_POST instead of retrieving things from PSR-7 ServerRequestInterface $request. Resolves: #99615 Releases: main Change-Id: I3cb6f3a0cee0a7654dce331dc40ab51f2efe41f4 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77477 Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-
Benni Mack authored
PageRepository's public properties "where_hid_del" and "where_groupAccess" which are used to modify a SQL query to fetch pages are now marked as protected, thus not accessible anymore for outside usage. Any usage will trigger a PHP deprecation notice. Resolves: #99588 Releases: main Change-Id: Ic8479e05dcaa72b4e9b7d5fbd3e56220dadd8f1e Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77405 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com>
-
Oliver Bartsch authored
The TypoScript module (web_ts) is not directly accessible and always redirects to the first available third level module. This patch resolves the necessity to define a default route for the module, which previously referenced a dummy controller. Resolves: #99620 Releases: main Change-Id: I6912ce65cec26f36745aa1aa9355db78e655b013 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77482 Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Oliver Bartsch <bo@cedev.de>
-
Chris Müller authored
Additionally, add descriptions to the available methods. Related: #99430 Resolves: #99619 Releases: main Change-Id: If4f7f8a90258727f1cb0044203fe5a41b3f78a3e Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77480 Tested-by:
Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Chris Müller authored
The docblock of the class is rendered for documentation, see: https://docs.typo3.org/other/typo3/view-helper-reference/main/en-us/typo3/fluid/latest/Format/Html.html This information should therefore be mentioned. Related: #99031 Resolves: #99536 Resolves: https://github.com/TYPO3-Documentation/Changelog-To-Doc/issues/250 Releases: main, 11.5 Change-Id: I6f21710975a8916e27cdcd38c0bcb83a129319ea Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77380 Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Nikita Hovratov <nikita.h@live.de> Tested-by:
Nikita Hovratov <nikita.h@live.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de>
-
Anja Leichsenring authored
Resolves: #99617 Releases: main Change-Id: I323fa8ec1b0381dd9c65c8b78bbd2989cd001aed Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77479 Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com>
-
Jasmina Ließmann authored
With #99564 the fluid template of the "Pagetree overview" submodule was updated, which leads to the same issue as in #76472 described before. With this change we restore the indent between icon and title in table of "Pagetree overview" submodule. Resolves: #99616 Related: #99564 Related: #76472 Releases: main Change-Id: I3070a08708bd861b7ef7449f5e0341e473196dab Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77478 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Anja Leichsenring authored
The class separation gets in the way of further modernizing and is integrated into the only consuming class for this reason. Resolves: #99607 Releases: main Change-Id: I590f81234b6d9ef809208b15d14ea2dc681fc4df Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77471 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-
Jasmina Ließmann authored
Resolves: #99600 Releases: main Change-Id: I382c3e34729ca87e756f142ae870dad9eaacf5a0 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77474 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Oliver Bartsch authored
The hook $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/cache/frontend/class.t3lib_cache_frontend_abstractfrontend.php']['flushByTag'] is deprecated, since it contradicts the recommended way for custom cache functionality, which is to implement a custom cache frontend using the corresponding Frontend API. Resolves: #99592 Releases: main Change-Id: Idb158c29408d5335774986adfb351e231f855a9d Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77464 Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benjamin Franzke <bfr@qbus.de> Tested-by:
Oliver Hader <oliver.hader@typo3.org> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Benjamin Franzke <bfr@qbus.de> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de>
-
Andreas Fernandez authored
The module `@typo3/backend/utility/collapse-state-persister.js` is incorporated in EXT:info's "Page TSconfig" tree to (re)store the collapse state of each tree node. Resolves: #99610 Releases: main Change-Id: Id2ef63bde1b3ed4737e2f17c398a9368cb2d03fc Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77473 Reviewed-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Jasmina Ließmann <minapokhalo+typo3@gmail.com> Reviewed-by:
Jasmina Ließmann <minapokhalo+typo3@gmail.com> Tested-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
core-ci <typo3@b13.com>
-
Benni Mack authored
TYPO3's log is mostly covered with "Locale fr_FR.UTF-8 not found", which can be simplified, if setlocale() is not working properly. The POSIX Platform suffix "UTF-8" is then removed, and setlocale() is called again with "fr_FR" instead of "fr_FR.UTF-8" thus avoiding log flooding in some systems. Resolves: #99591 Releases: main, 11.5, 10.4 Change-Id: I4609d453c29a306d448bcdc3277b51a344af28ae Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77458 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech>
-
Susanne Moog authored
A new PSR-14 event has been added to allow extension developers to react on record publishing in workspaces. The event does not allow any modifications, but provides context related information, such as the table name, the current workspace and the record uid. Resolves: #99430 Releases: main Change-Id: I56a75c86b26d7af169c2531f93d0c0a2f4f1ee02 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77210 Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
core-ci <typo3@b13.com>
-
Anja Leichsenring authored
Resolves: #99579 Releases: main Change-Id: If8aa4864656da59e328076c9240fcd31e5eba16c Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77425 Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech>
-
Jasmina Ließmann authored
Add headline and a descriptive text to overview of Page TSconfig on page zero. Update labels in table header too. Resolves: #99597 Releases: main Change-Id: Ifd80e361ffc1817818d1489a433886023d1982ca Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77467 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Oliver Bartsch authored
The "display thumbnails" checkbox in the file browser is using the global event handler functionality. This checkbox is now working again by loading the required JS module, which was previously available due to the indirect usage of the ModuleTemplate. Resolves: #99601 Releases: main Change-Id: I7872b750d183ec77fb80c35d5ba4a03ed94af8ef Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77468 Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com>
-
Anja Leichsenring authored
The inheritance gets in the way of further plans to modernize the info module and therefor needs to go. No functional changes have been made to the class up to this point. Resolves: #99598 Releases: main Change-Id: If84b8a2529f5934bcf3a2651a304b3655dfbd3e2 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77465 Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Jasmina Ließmann authored
To reduce the size of the list and improve clarity, the individual list entries can now be expanded and collapsed. Resolves: #99577 Releases: main Change-Id: I0703955f6ec171b69b371c4b08aa76e2d2a12cc9 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77453 Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Torben Hansen authored
Resolves: #99595 Releases: main Signed-off-by:
Torben Hansen <derhansen@gmail.com> Change-Id: I57e085abc685ba918754de3be25ad0eef906f725 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77463 Tested-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Björn Jacob <bjoern.jacob@tritum.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Björn Jacob <bjoern.jacob@tritum.de> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Benni Mack <benni@typo3.org>
-
Benni Mack authored
This change reduces all logic where "fallback to default language" is outside of LanguageService, allowing LanguageService to deal with such functionality now. Resolves: #99587 Releases: main Change-Id: I01717d229d5f61ef6ab67886a30b9b73ccb4e193 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77421 Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-
Gordon Brüggemann authored
This change enables functionality of every content to use the fallback chain to loop over each fallback language to check for a fallback content in a different language ID. This is now in line with the page resolving fallback handling and finally completes the options within site configuration "fallbackChain". This works in Extbase and TypoScript environments. Resolves: #88137 Releases: main Change-Id: I987a296c6e483967d497bf59e71b8c5cbcd54938 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/67893 Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Oliver Bartsch <bo@cedev.de>
-
- Jan 17, 2023
-
-
Oliver Bartsch authored
A new PHP Attribute "UpgradeWizard" is added, which is used to auto-configure and auto-register upgrade wizards. This replaces the registration via $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update'], which has therefore been deprecated together with the getIdentifier() method in the UpgradeWizardInterface. An upgrade wizards' unique identifier is now defined as first constructor argument of the new PHP attribute. Resolves: #99586 Releases: main Change-Id: Id93ed4c980f9057bb297853354ddcc9c4c23860e Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77452 Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benjamin Franzke <bfr@qbus.de> Reviewed-by:
Benjamin Franzke <bfr@qbus.de>
-
Torben Hansen authored
The field `realName` has been added to the "Create Administrative User" modal in ext:install, so it is possible to provide the name of a new admin user. The notice in the header of the model has been removed, since it is superfluous now. Resolves: #99584 Releases: main Signed-off-by:
Torben Hansen <derhansen@gmail.com> Change-Id: I6732bfe4d664f200b2bcc3471c6f0ffd9859365b Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77455 Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-
Oliver Hader authored
Using CSP directive `style-src 'unsafe-inline'` seems to be fine for directly requested SVG files, since corresponding definitions are bound to the corresponding resource. Loading styles from any other external resource is still denied. Resolves: #93884 Releases: main, 11.5, 10.4 Change-Id: Ifddf8782ecaa81bf26026ae8850d8c53b7977bd7 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75594 Reviewed-by:
Frank Nägler <frank.naegler@typo3.com> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Torben Hansen <derhansen@gmail.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.com> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Torben Hansen <derhansen@gmail.com>
-
Benni Mack authored
This change cleans up some tests, and also streamlines some usages (not all of them) of $TYPO3_CONF_VARS['EXTCONF']['lang']['availableLanguages']. Resolves: #99578 Releases: main Change-Id: I52b6f43260d08abf59d6078498511084469b2308 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77423 Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Nikita Hovratov <nikita.h@live.de>
-
Oliver Bartsch authored
This reverts commit abd887a1. Reason for revert: Multiple places are broken now. See comment from Nikita in the original patch. Change-Id: Ib9970eb0b5b449899adc2b5b082283948349a1f5 Reverts: #99580 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77433 Tested-by:
Benjamin Franzke <bfr@qbus.de> Tested-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Benjamin Franzke <bfr@qbus.de>
-
Benjamin Franzke authored
Increase the target area height from 13px to 48px and let the anchor tag cover the entire panel heading size. Releases: main Resolves: #99580 Change-Id: I859db3f96f2f819ec4b272dd98e61b44a79c4eaf Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77428 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Nikita Hovratov <nikita.h@live.de> Tested-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Oliver Bartsch <bo@cedev.de>
-
Torben Hansen authored
The password for a new administrative backend user created using the install extension does now consider the configurable password policy introduced in #97388 Resolves: #97392 Releases: main Change-Id: I711071acdd7c8bcf10b04a1ca46b7d486c742f6e Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77233 Tested-by:
Oliver Hader <oliver.hader@typo3.org> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com>
-
Nikita Hovratov authored
Since the introduction of always absolute (web) paths inside the TYPO3 backend, the TCA ctrl option `selicon_field` didn't work anymore since relative web paths like `fileadmin/file.png` changed to `/fileadmin/file.png`, which were not handled and resulted in a missing icon. This patch extends the condition for checking for absolute paths and prevents the GU:getFileAbsFileName method from turning web paths into empty strings. Resolves: #95572 Resolves: #97442 Related: #95027 Releases: main, 11.5 Change-Id: I1b82f71fe4f0636bd786d102f361ca60c1294af9 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77208 Tested-by:
Jasmina Ließmann <minapokhalo+typo3@gmail.com> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Jasmina Ließmann <minapokhalo+typo3@gmail.com> Reviewed-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Nikita Hovratov <nikita.h@live.de>
-