From d4a3c053396d0b5d794107a80ac639ade8c4084c Mon Sep 17 00:00:00 2001 From: Liam Morland <lkmorlan@uwaterloo.ca> Date: Fri, 31 May 2019 10:40:01 -0400 Subject: [PATCH] Issue #3023330: Use old-style array declarations Fixes issue introduced in 096ea16. --- fillpdf.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fillpdf.module b/fillpdf.module index 5e28767..6a8aad0 100644 --- a/fillpdf.module +++ b/fillpdf.module @@ -1784,11 +1784,11 @@ function fillpdf_execute_parse($method, $fillpdf, $mode = 'url') { 'type' => 'Text', ), // Test duplicate name. - 3 => [ + 3 => array( 'name' => 'ImageField', 'value' => '', 'type' => 'Pushbutton', - ], + ), ); break; } -- GitLab