Browse Source

Merge pull request #493 from qadan/7.x

Fix for the error message
pull/495/head
Adam 11 years ago
parent
commit
6c3fcb0381
  1. 4
      tests/datastream_validators.inc

4
tests/datastream_validators.inc

@ -194,10 +194,10 @@ abstract class DatastreamValidator {
$this->datastreamContent = $object[$datastream]->content; $this->datastreamContent = $object[$datastream]->content;
} }
else { else {
drupal_set_message(t("Error grabbing content from datastream %datastream in object %id", 'error'), array( drupal_set_message(t("Error grabbing content from datastream %datastream in object %id", array(
'%datastream' => $datastream, '%datastream' => $datastream,
'%id' => $object->id, '%id' => $object->id,
)); )), 'error');
} }
} }

Loading…
Cancel
Save