Skip to content
Snippets Groups Projects

Issue #2707689: NodeForm::actions() checks for delete access on new entities

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
  • 507fc5fe
    Issue #3248014 by daffie, andypost: [Symfony 6] The... · 507fc5fe
    catch authored
    Issue #3248014 by daffie, andypost: [Symfony 6] The Drupal\Tests\media\Kernel\OEmbedIframeControllerTest fails
@@ -121,8 +121,8 @@ public static function create(ContainerInterface $container) {
*/
public function render(Request $request) {
$url = $request->query->get('url');
$max_width = $request->query->getInt('max_width', NULL);
$max_height = $request->query->getInt('max_height', NULL);
$max_width = $request->query->getInt('max_width');
$max_height = $request->query->getInt('max_height');
// Hash the URL and max dimensions, and ensure it is equal to the hash
// parameter passed in the query string.
Loading