#348448 by jpmckinney: Fixed more PHP strict warnings.

merge-requests/26/head
Angie Byron 2010-04-22 10:16:24 +00:00
parent 186fb08d7b
commit 7d9c1dd7e6
1 changed files with 2 additions and 1 deletions

View File

@ -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.