From 0d6303dc324cb46a22faae3f853e1ba9bcc1d13b Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Thu, 19 Oct 2017 13:50:34 -0400 Subject: [PATCH] Style: prefer echo over print. --- module/VuFind/src/VuFind/ILS/Driver/Aleph.php | 2 +- .../VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/VuFind/src/VuFind/ILS/Driver/Aleph.php b/module/VuFind/src/VuFind/ILS/Driver/Aleph.php index 39528290e7f..7a5dad4b77d 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Aleph.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Aleph.php @@ -152,7 +152,7 @@ class AlephTranslator { $tab15 = $this->tabSubLibraryTranslate($slc); if ($tab15 == null) { - print "tab15 is null!<br>"; + echo "tab15 is null!<br>"; } $findme = $tab15["tab15"] . "|" . $isc . "|" . $ipsc; $result = $this->table15[$findme]; diff --git a/module/VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php b/module/VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php index f918c53ad8a..076df60f0b9 100644 --- a/module/VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php +++ b/module/VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php @@ -325,7 +325,7 @@ class Connector implements \Zend\Log\LoggerAwareInterface $qs[] = "loc=adaptor,primo_central_multiple_fe"; if ($this->debug) { - print "URL: " . implode('&', $qs); + echo "URL: " . implode('&', $qs); } // Send Request -- GitLab