Simon Schaufelberger
Simon Schaufelberger
@alasdairmackenzie could you do a code review please?
I have the same problem and can confirm it since upgrading from 0.8.5 to any higher version. I embedded the font like so: ```css @font-face { font-family: 'IB'; font-weight: normal;...
@bsweeney I'm looking forward for the fix as well. Just stumbled over this issue while searching for a solution for base64 fonts.
As this project is dead, I can recomment some desktop clients: * https://robomongo.org/ (Robo 3T) (works with virtual machines) * https://www.dbkoda.com/ (doesn't work with virtual machines but better UI)
@franzholz the Bug #579 has nothing to do with PHP 8. Use composer and the error will be gone or disable the backup feature.
@benwick would you please create a pull request and provide a fix? This project is not a one man show. Everybody can contribute! Unfortunately there is no budget from the...
the `static` is a tiny optimization and as long as you don't use `$this`, there is no difference. Using `static` function here is better than without. Please create a separate...
Just rebase on master and force push.
@knbknb Maintaining this extension is also very time-consuming, by the way ;) Have you considered donating or contributing to help me maintain this extension? That would mean a lot!
I used it to always assign a user to my view like that: ```php protected function initializeView(ViewInterface $view) { parent::initializeView($view); $this->loadUser(); $this->view->assign('user', $this->getUser()); } ``` A good replacement would be...