From 7d9c1dd7e636f038017b033d3005c93cf7d6592a Mon Sep 17 00:00:00 2001
From: Angie Byron <webchick@24967.no-reply.drupal.org>
Date: Thu, 22 Apr 2010 10:16:24 +0000
Subject: [PATCH] #348448 by jpmckinney: Fixed more PHP strict warnings.

---
 authorize.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/authorize.php b/authorize.php
index ee228894487b..eb9a753a5096 100644
--- a/authorize.php
+++ b/authorize.php
@@ -158,7 +158,8 @@ function authorize_access_allowed() {
     }
     elseif (!$batch = batch_get()) {
       // We have a batch to process, show the filetransfer form.
-      $output = drupal_render(drupal_get_form('authorize_filetransfer_form'));
+      $elements = drupal_get_form('authorize_filetransfer_form');
+      $output = drupal_render($elements);
     }
   }
   // We defer the display of messages until all operations are done.
-- 
GitLab