From 13d87d49bd0332888c7d85e2140bbc7d66c19d63 Mon Sep 17 00:00:00 2001 From: Brandon Weigel Date: Tue, 21 May 2019 14:30:51 +0000 Subject: [PATCH] Another attempt to fix travis --- includes/tuque_wrapper.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/tuque_wrapper.inc b/includes/tuque_wrapper.inc index 29139e0b..bf742ee8 100644 --- a/includes/tuque_wrapper.inc +++ b/includes/tuque_wrapper.inc @@ -254,11 +254,11 @@ class IslandoraFedoraObject extends FedoraObject { } catch (Exception $e) { if ($e instanceof DatastreamExistsException && variable_get('islandora_deprecation_return_false_when_datastream_exists', TRUE)) { - $message = format_string('The datastream @dsid already exists on the object: @pid. - Returning FALSE on ingestDatastream() is deprecated in 7.x-1.10. See https://github.com/Islandora/islandora/pull/680/.', array( - '@dsid' => $datastream->id, - '@pid' => $object->id, - )); + $message = format_string('Returning FALSE on ingestDatastream() is deprecated in 7.x-1.10. See https://github.com/Islandora/islandora/pull/680/. + The datastream @dsid already exists on the object: @pid.', array( + '@dsid' => $datastream->id, + '@pid' => $object->id, + )); trigger_error(filter_xss($message), E_USER_DEPRECATED); return FALSE; }