- Issue created by @jcandan
- πΊπΈUnited States jcandan
@ccarnnia, I'd prefer not to lose the original intent of the conditional. Which is to ensure we're dealing with a form submission.
Can you resubmit with the following instead?
use Symfony\Component\HttpFoundation\Request ... $has_form_submission = $this->view->getRequest() instanceof Request && $this->view->getRequest()->request->get('form_id'); if ($has_form_submission && isset($this->view->temporary_options[$type][$id])) { $info = $this->view->temporary_options[$type][$id]; }
- π³πΏNew Zealand quietone
Changes are made on on 11.x (our main development branch) first, and are then back ported as needed according to the Core change policies β .
kushagra.goyal β made their first commit to this issueβs fork.
- Merge request !11089Refactored form submission check for improved readability and safety β (Open) created by Unnamed author
Raised the MR to ensure safety by using instanceof check and optimizing getRequest() calls to avoid redundancy.