Dennis Meckel
Dennis Meckel
I discovered while writing the CLI interface for [ecoji-php](https://github.com/Rayne/ecoji-php) that the wrapping option doesn't produce the expected results. It always places groups of four emojis. **Example** ```bash echo -n "Hello...
`Base->clean()` doesn't [mitigate XSS/code injection attacks](https://github.com/bcosca/fatfree/blob/9cc485be8db3b2b9d7c1f098db24afd05e5259da/lib/base.php#L779-780) as it doesn't remove malicious tag attributes. ``` php $f3->route('GET /test/clean', function(Base $f3) { echo $f3->clean('Link', 'a'); }); ``` Generates: ``` Link ``` For...
### Actual behaviour Removing a persistent connection at `/user/show/…/sessions` doesn't log out the client using this session. The behavior was tested with the Docker image. ### Expected behaviour Sessions removed...
See https://github.com/bcosca/fatfree/issues/1272
When changing in the tutorial from `fatfree` to `fatfree-core` we are loosing the `lib` folder. The tutorial explains that we can use it to add additional libraries there. Since most...
A user had questions about unit testing but the documentation has no complete overview. I gathered some ideas and snippets: - [ ] Copy/Move information from [`bcosca/fatfree#unit-testing`](https://github.com/bcosca/fatfree#unit-testing) to [`F3Community/F3com-data`](https://github.com/F3Community/F3com-data) -...