Browse Source

Merge pull request #717 from jordandukart/7.x

Type as bool.
pull/718/head
Jared Whiklo 6 years ago committed by GitHub
parent
commit
3b04eedf92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      includes/regenerate_derivatives.form.inc

6
includes/regenerate_derivatives.form.inc

@ -167,14 +167,14 @@ function islandora_derivative_perform_batch_operation($function, $file, $pid, $f
/** /**
* Finished function for derivative batch regeneration. * Finished function for derivative batch regeneration.
* *
* @param array $success * @param bool $success
* An array of success passed from the batch. * A boolean indicating whether the batch has completed successfully.
* @param array $results * @param array $results
* An array of results passed from the batch. * An array of results passed from the batch.
* @param array $operations * @param array $operations
* An array of operations passed from the batch. * An array of operations passed from the batch.
*/ */
function islandora_regenerate_derivative_batch_finished(array $success, array $results, array $operations) { function islandora_regenerate_derivative_batch_finished($success, array $results, array $operations) {
module_load_include('inc', 'islandora', 'includes/derivatives'); module_load_include('inc', 'islandora', 'includes/derivatives');
if (!empty($results['logging'])) { if (!empty($results['logging'])) {
islandora_derivative_logging($results['logging']); islandora_derivative_logging($results['logging']);

Loading…
Cancel
Save