summaryrefslogtreecommitdiff
path: root/authorize.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-22 10:16:24 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-22 10:16:24 +0000
commit7d9c1dd7e636f038017b033d3005c93cf7d6592a (patch)
tree4b706fc7ceb28a30ee24b0786df80e216c8a3e89 /authorize.php
parent186fb08d7b08ea5b4e557b4af11d97883d931382 (diff)
downloadbrdo-7d9c1dd7e636f038017b033d3005c93cf7d6592a.tar.gz
brdo-7d9c1dd7e636f038017b033d3005c93cf7d6592a.tar.bz2
#348448 by jpmckinney: Fixed more PHP strict warnings.
Diffstat (limited to 'authorize.php')
-rw-r--r--authorize.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/authorize.php b/authorize.php
index ee2288944..eb9a753a5 100644
--- a/authorize.php
+++ b/authorize.php
@@ -158,7 +158,8 @@ if (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.