Hannes Papenberg
Hannes Papenberg
### Summary of Changes `Toolbar::getInstance()` has been deprecated for quite some time now, but the alternative wasn't really clear yet. This PR replaces all occurences with `$this->getDocument()->getToolbar()` instead. This leaves...
### Summary of Changes `Factory::getLanguage()` is deprecated and should not be used anymore. This PR replaces all occurences in our codebase with `Factory::getApplication()->getLanguage()`. I did this with simple search+replace, so...
### Summary of Changes We currently are still using the `LegacyPropertyManagementTrait` in our `Table` classes and use the `get()`/`set()` methods in the code. This PR removes those calls to these...
Pull Request for Issue #42374. ### Summary of Changes When typing in the email adress and accidentally adding a space at the front, the process fails. See the original issue...
See the results of phan in 3.x-dev. In `src/Container.php` line 467 and 483, the methods `\ReflectionType::isBuiltin()` and `\ReflectionType::getName()` are used, which don't exist in PHP 8 anymore. This needs to...
### Summary of Changes Right now we have the ability to disable the RSS link in the header of different views, however that only hides the link in the output....
### Summary of Changes I noticed that the layout of the modal-select form field declares the $onchange option, but does not use it. This PR fixes that. I'm not sure...
### Summary of Changes The routing in Joomla requires some information to be in the query to build proper URLs. One is the `slug`, the combination of the ID and...
Pull Request for issue #24315, #25449, #39181 ### Summary of Changes This is a refactoring of the routing component of the languagefilter plugin. The goal are as follows: - Allow...
### Summary of Changes This PR removes the CMS Filesystem package. You can use the Joomla framework Filesystem package as a drop-in replacement. This PR depends on several other PRs...