From b720cda832f57df2775cecd8b698ae8c8559047b Mon Sep 17 00:00:00 2001
From: Stefan Weil
Date: Sat, 15 Nov 2025 23:21:30 +0100
Subject: [PATCH] Fix some typos (mostly in comments, found by codespell)
Signed-off-by: Stefan Weil
---
module/Bsz/src/Bsz/Config/Client.php | 2 +-
module/Bsz/src/Bsz/Controller/RecordController.php | 8 ++++----
.../Bsz/src/Bsz/Controller/Search2RecordController.php | 6 +++---
module/Bsz/src/Bsz/Debug.php | 2 +-
module/Bsz/src/Bsz/ILL/Logic.php | 8 ++++----
module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php | 10 +++++-----
module/Bsz/src/Bsz/Resolver/Driver/Ill.php | 2 +-
module/BszTheme/src/BszTheme/ThemeInfo.php | 2 +-
.../src/BszTheme/View/Helper/Bodensee/IllForm.php | 2 +-
.../src/BszTheme/View/Helper/Bodensee/Mapongo.php | 6 +++---
.../src/BszTheme/View/Helper/Bodensee/RecordLink.php | 2 +-
themes/bodensee/js/vendor/bootstrap-datepicker.js | 2 +-
themes/bodensee/templates/bsz/mzbihs/en.phtml | 2 +-
themes/bodensee/templates/bsz/wlb/en.phtml | 2 +-
themes/bodensee/theme.config.php | 2 +-
themes/bodensee5/js/vendor/bootstrap-datepicker.js | 2 +-
themes/bodensee5/templates/bsz/mzbihs/en.phtml | 2 +-
themes/bodensee5/templates/bsz/wlb/en.phtml | 2 +-
themes/bodensee5/theme.config.php | 2 +-
.../js/vendor/leaflet/leaflet.markercluster-src.js | 4 ++--
.../js/vendor/leaflet/leaflet.markercluster.js | 4 ++--
themes/bootstrap5/js/lightbox.js | 2 +-
.../js/vendor/leaflet/leaflet.markercluster-src.js | 4 ++--
.../js/vendor/leaflet/leaflet.markercluster.js | 4 ++--
themes/bsz/templates/bsz/mzbihs/en.phtml | 2 +-
themes/bsz/templates/bsz/mzub/en.phtml | 2 +-
themes/reichenau/templates/bsz/mzbihs/en.phtml | 2 +-
27 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/module/Bsz/src/Bsz/Config/Client.php b/module/Bsz/src/Bsz/Config/Client.php
index 78fea102477..5e94d7dd4ba 100644
--- a/module/Bsz/src/Bsz/Config/Client.php
+++ b/module/Bsz/src/Bsz/Config/Client.php
@@ -305,7 +305,7 @@ public function isIsilSession()
}
/**
- * Does this entity alreay have an isil stored in session (ill portal)
+ * Does this entity already have an isil stored in session (ill portal)
* @return bool
*/
public function hasIsilSession()
diff --git a/module/Bsz/src/Bsz/Controller/RecordController.php b/module/Bsz/src/Bsz/Controller/RecordController.php
index 4ef8d1f7f2d..f3a7b335b38 100644
--- a/module/Bsz/src/Bsz/Controller/RecordController.php
+++ b/module/Bsz/src/Bsz/Controller/RecordController.php
@@ -229,7 +229,7 @@ public function freeFormAction()
}
/**
- * Determin if we should use the test or live url.
+ * Determine if we should use the test or live url.
* @return boolean
*/
private function isTestMode()
@@ -256,7 +256,7 @@ private function isDev()
}
/**
- * Determin if we should use the test or live url.
+ * Determine if we should use the test or live url.
* @return boolean
*/
public function getCustomUrl()
@@ -357,11 +357,11 @@ public function parseResponse($html)
// so if it matches is returns 1 which is casted to true
if ((bool)preg_match('/Bestell-Id:\s*(\d*)/', $html->textContent, $id) === true) {
$this->orderId = $id[1];
- // Order is successfull
+ // Order is successful
$this->flashMessenger()->addSuccessMessage('ILL::request_submit_ok');
return true;
} else {
- // order not successfull - disable error reporting because
+ // order not successful - disable error reporting because
// preg_match errors may occur.
$error_reporting = error_reporting();
error_reporting(0);
diff --git a/module/Bsz/src/Bsz/Controller/Search2RecordController.php b/module/Bsz/src/Bsz/Controller/Search2RecordController.php
index c26e2d353ae..6ff03d80c7a 100644
--- a/module/Bsz/src/Bsz/Controller/Search2RecordController.php
+++ b/module/Bsz/src/Bsz/Controller/Search2RecordController.php
@@ -229,7 +229,7 @@ public function freeFormAction()
}
/**
- * Determin if we should use the test or live url.
+ * Determine if we should use the test or live url.
* @return boolean
*/
private function isTestMode()
@@ -379,11 +379,11 @@ public function parseResponse($html)
// so if it matches is returns 1 which is casted to true
if ((bool)preg_match('/Bestell-Id:\s*(\d*)/', $html->textContent, $id) === true) {
$this->orderId = $id[1];
- // Order is successfull
+ // Order is successful
$this->flashMessenger()->addSuccessMessage('ILL::request_submit_ok');
return true;
} else {
- // order not successfull - disable error reporting because
+ // order not successful - disable error reporting because
// preg_match errors may occur.
$error_reporting = error_reporting();
error_reporting(0);
diff --git a/module/Bsz/src/Bsz/Debug.php b/module/Bsz/src/Bsz/Debug.php
index e49e1ee4c0e..667e58309bd 100644
--- a/module/Bsz/src/Bsz/Debug.php
+++ b/module/Bsz/src/Bsz/Debug.php
@@ -70,7 +70,7 @@ public static function isInternal()
}
/**
- * Determin if running on Test Server
+ * Determine if running on Test Server
* @return boolean
*/
public static function isDev()
diff --git a/module/Bsz/src/Bsz/ILL/Logic.php b/module/Bsz/src/Bsz/ILL/Logic.php
index 5df4c897888..dc59e0affb4 100644
--- a/module/Bsz/src/Bsz/ILL/Logic.php
+++ b/module/Bsz/src/Bsz/ILL/Logic.php
@@ -200,7 +200,7 @@ protected function determineStatus()
/**
* Returns the unique status code
- * TODO: this method shoudl return something from conffiguration. *
+ * TODO: this method should return something from configuration. *
* @return int
*/
public function getStatusCode()
@@ -221,7 +221,7 @@ public function getMessages()
{
/*
* TODO there are still some messages set in methods. These should be
- * removed to the configuration. It might be neccessary to split those
+ * removed to the configuration. It might be necessary to split those
* methods into exactly one task.
*/
$retval = $this->messages;
@@ -313,7 +313,7 @@ protected function checkSerialOrCollection(): bool
}
/**
- * Determin if an item is available locally. Checks for
+ * Determine if an item is available locally. Checks for
* * 924 entries
* * Parallel editions in SWB
* * Similar results from SWB (if network != SWB) *
@@ -492,7 +492,7 @@ protected function hasParallelEditions()
/**
* Check if it is a journal and available locally. Journals can always be
- * ordnered because we can't evauluate their exact holding dates.
+ * ordnered because we can't evaluate their exact holding dates.
* @return bool
*/
protected function checkJournalAvailable(): bool
diff --git a/module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php b/module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php
index 1007ed20060..9d852523972 100644
--- a/module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php
+++ b/module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php
@@ -558,7 +558,7 @@ public function getURLs(): array
$ind2 = $field['i2'];
// we don't want to show licensed content
- // ind1,2 = 4,0 is probably lincensed content.
+ // ind1,2 = 4,0 is probably licensed content.
// only if we find a kostenfrei in |z, we use the link
// special case: DE-950 Proquest links are shown
if (!$is950 && $ind1 == 4 && $ind2 == 0) {
@@ -860,10 +860,10 @@ public function getVolumeNumber()
}
/**
- * get local Urls from 924|k and the correspondig linklabel 924|l
+ * get local Urls from 924|k and the corresponding linklabel 924|l
* - $924 is repeatable
- * - |k is repeatable, |l aswell
- * - we can have more than one isil ?is this true? maybe allways the first isil
+ * - |k is repeatable, |l as well
+ * - we can have more than one isil ?is this true? maybe always the first isil
* - different Urls from one instition may have different issues (is this true?)
* @return array
*/
@@ -883,7 +883,7 @@ public function getLocalUrls()
}
/**
- * Anonymous function, called bellow. It handles ONE url.
+ * Anonymous function, called below. It handles ONE url.
*
* @param $link
* @param $label
diff --git a/module/Bsz/src/Bsz/Resolver/Driver/Ill.php b/module/Bsz/src/Bsz/Resolver/Driver/Ill.php
index 2b5840ee743..00ea0d5a531 100644
--- a/module/Bsz/src/Bsz/Resolver/Driver/Ill.php
+++ b/module/Bsz/src/Bsz/Resolver/Driver/Ill.php
@@ -83,7 +83,7 @@ protected function downgradeOpenUrl($params)
}
}
- // remove date info for journals because users must choose themselfes.
+ // remove date info for journals because users must choose themselves.
if ($newParams['genre'] == 'journal') {
unset($newParams['date']);
}
diff --git a/module/BszTheme/src/BszTheme/ThemeInfo.php b/module/BszTheme/src/BszTheme/ThemeInfo.php
index 04d3d3150d2..ace49f0c0d5 100644
--- a/module/BszTheme/src/BszTheme/ThemeInfo.php
+++ b/module/BszTheme/src/BszTheme/ThemeInfo.php
@@ -20,7 +20,7 @@
namespace BszTheme;
/**
- * BSZ implementation of ThemeInfo, here we load all client specific ressources.
+ * BSZ implementation of ThemeInfo, here we load all client specific resources.
*
* @author Cornelius Amzar
*/
diff --git a/module/BszTheme/src/BszTheme/View/Helper/Bodensee/IllForm.php b/module/BszTheme/src/BszTheme/View/Helper/Bodensee/IllForm.php
index 6395c43c07b..ca8b77d1551 100644
--- a/module/BszTheme/src/BszTheme/View/Helper/Bodensee/IllForm.php
+++ b/module/BszTheme/src/BszTheme/View/Helper/Bodensee/IllForm.php
@@ -182,7 +182,7 @@ protected function renderBibliographicFieldsArticle()
{
// the first is the label, the second the fieldname, third the value
// arrays in value are allowed, they are imploded later
- // most fields here are populated from the containg record
+ // most fields here are populated from the containing record
$container = $this->driver->getContainer();
$container = array_shift($container);
$author = '';
diff --git a/module/BszTheme/src/BszTheme/View/Helper/Bodensee/Mapongo.php b/module/BszTheme/src/BszTheme/View/Helper/Bodensee/Mapongo.php
index a3deab440b8..052a49a6e11 100644
--- a/module/BszTheme/src/BszTheme/View/Helper/Bodensee/Mapongo.php
+++ b/module/BszTheme/src/BszTheme/View/Helper/Bodensee/Mapongo.php
@@ -30,13 +30,13 @@ public function __construct(\Bsz\Config\Client $config)
/**
* Invoked in the template, returns HTML
*
- * @param string $signatur
+ * @param string $signature
* @param string $lang
* @return string
*/
- public function __invoke($signatur, $lang = 'de')
+ public function __invoke($signature, $lang = 'de')
{
- preg_match('/\|\s(.*)/', $signatur, $matches);
+ preg_match('/\|\s(.*)/', $signature, $matches);
$rvk = $matches[1] ?? '';
return $this->render($rvk, $lang);
}
diff --git a/module/BszTheme/src/BszTheme/View/Helper/Bodensee/RecordLink.php b/module/BszTheme/src/BszTheme/View/Helper/Bodensee/RecordLink.php
index 7ed37232c1b..ecb3d4b8379 100644
--- a/module/BszTheme/src/BszTheme/View/Helper/Bodensee/RecordLink.php
+++ b/module/BszTheme/src/BszTheme/View/Helper/Bodensee/RecordLink.php
@@ -123,7 +123,7 @@ public function linkToOpac($opacUrl, $ppn): string
}
/**
- * This method renders the author names well formated as HTML
+ * This method renders the author names well formatted as HTML
*
* @param SolrMarc $driver
* @param int $number 1 to number of authors
diff --git a/themes/bodensee/js/vendor/bootstrap-datepicker.js b/themes/bodensee/js/vendor/bootstrap-datepicker.js
index 76a99fc2743..5ee202fba26 100644
--- a/themes/bodensee/js/vendor/bootstrap-datepicker.js
+++ b/themes/bodensee/js/vendor/bootstrap-datepicker.js
@@ -1687,7 +1687,7 @@
options = typeof option === 'object' && option;
if (!data){
var elopts = opts_from_el(this, 'date'),
- // Preliminary otions
+ // Preliminary options
xopts = $.extend({}, defaults, elopts, options),
locopts = opts_from_locale(xopts.language),
// Options priority: js args, data-attrs, locales, defaults
diff --git a/themes/bodensee/templates/bsz/mzbihs/en.phtml b/themes/bodensee/templates/bsz/mzbihs/en.phtml
index 7ab5e78dafe..640fdf2e058 100644
--- a/themes/bodensee/templates/bsz/mzbihs/en.phtml
+++ b/themes/bodensee/templates/bsz/mzbihs/en.phtml
@@ -1,5 +1,5 @@
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO.
+ This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de
diff --git a/themes/bodensee/templates/bsz/wlb/en.phtml b/themes/bodensee/templates/bsz/wlb/en.phtml
index d55e820854a..196104c89de 100644
--- a/themes/bodensee/templates/bsz/wlb/en.phtml
+++ b/themes/bodensee/templates/bsz/wlb/en.phtml
@@ -22,5 +22,5 @@
Provision times
-Occasionally there may be delays in the fulfilment of your orders from our external stock. Media that can be collected are listed in your account under "Reservation". If you have entered an e-mail address, you will be informed by selecting "Notification for provided items".
+Occasionally there may be delays in the fulfillment of your orders from our external stock. Media that can be collected are listed in your account under "Reservation". If you have entered an e-mail address, you will be informed by selecting "Notification for provided items".
\ No newline at end of file
diff --git a/themes/bodensee/theme.config.php b/themes/bodensee/theme.config.php
index 54427aa98db..ea582ae4613 100644
--- a/themes/bodensee/theme.config.php
+++ b/themes/bodensee/theme.config.php
@@ -94,7 +94,7 @@
],
'aliases' => [
/**
- * Icons can be assigned or overriden here
+ * Icons can be assigned or overridden here
*
* Format: 'icon' => [set:]icon[:extra_classes]
* Icons assigned without set will use the defaultSet.
diff --git a/themes/bodensee5/js/vendor/bootstrap-datepicker.js b/themes/bodensee5/js/vendor/bootstrap-datepicker.js
index 76a99fc2743..5ee202fba26 100644
--- a/themes/bodensee5/js/vendor/bootstrap-datepicker.js
+++ b/themes/bodensee5/js/vendor/bootstrap-datepicker.js
@@ -1687,7 +1687,7 @@
options = typeof option === 'object' && option;
if (!data){
var elopts = opts_from_el(this, 'date'),
- // Preliminary otions
+ // Preliminary options
xopts = $.extend({}, defaults, elopts, options),
locopts = opts_from_locale(xopts.language),
// Options priority: js args, data-attrs, locales, defaults
diff --git a/themes/bodensee5/templates/bsz/mzbihs/en.phtml b/themes/bodensee5/templates/bsz/mzbihs/en.phtml
index 7ab5e78dafe..640fdf2e058 100644
--- a/themes/bodensee5/templates/bsz/mzbihs/en.phtml
+++ b/themes/bodensee5/templates/bsz/mzbihs/en.phtml
@@ -1,5 +1,5 @@
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO.
+ This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de
diff --git a/themes/bodensee5/templates/bsz/wlb/en.phtml b/themes/bodensee5/templates/bsz/wlb/en.phtml
index d55e820854a..196104c89de 100644
--- a/themes/bodensee5/templates/bsz/wlb/en.phtml
+++ b/themes/bodensee5/templates/bsz/wlb/en.phtml
@@ -22,5 +22,5 @@
Provision times
-Occasionally there may be delays in the fulfilment of your orders from our external stock. Media that can be collected are listed in your account under "Reservation". If you have entered an e-mail address, you will be informed by selecting "Notification for provided items".
+Occasionally there may be delays in the fulfillment of your orders from our external stock. Media that can be collected are listed in your account under "Reservation". If you have entered an e-mail address, you will be informed by selecting "Notification for provided items".
\ No newline at end of file
diff --git a/themes/bodensee5/theme.config.php b/themes/bodensee5/theme.config.php
index 54427aa98db..ea582ae4613 100644
--- a/themes/bodensee5/theme.config.php
+++ b/themes/bodensee5/theme.config.php
@@ -94,7 +94,7 @@
],
'aliases' => [
/**
- * Icons can be assigned or overriden here
+ * Icons can be assigned or overridden here
*
* Format: 'icon' => [set:]icon[:extra_classes]
* Icons assigned without set will use the defaultSet.
diff --git a/themes/bootstrap3/js/vendor/leaflet/leaflet.markercluster-src.js b/themes/bootstrap3/js/vendor/leaflet/leaflet.markercluster-src.js
index 92f152511ef..17ba2ada0f9 100644
--- a/themes/bootstrap3/js/vendor/leaflet/leaflet.markercluster-src.js
+++ b/themes/bootstrap3/js/vendor/leaflet/leaflet.markercluster-src.js
@@ -1394,7 +1394,7 @@ L.MarkerClusterGroup.include({
//Force a browser layout of stuff in the map
// Should apply the current opacity and location to all elements so we can update them again for an animation
_forceLayout: function () {
- //In my testing this works, infact offsetWidth of any element seems to work.
+ //In my testing this works, in fact offsetWidth of any element seems to work.
//Could loop all this._layers and do this for each _icon if it stops working
L.Util.falseFn(document.body.offsetWidth);
@@ -2518,7 +2518,7 @@ L.MarkerClusterGroup.include({
this._map.getRenderer(this);
//Needs to happen in the pageload, not after, or animations don't work in webkit
// http://stackoverflow.com/questions/8455200/svg-animate-with-dynamically-added-elements
- //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticable
+ //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticeable
}
},
diff --git a/themes/bootstrap3/js/vendor/leaflet/leaflet.markercluster.js b/themes/bootstrap3/js/vendor/leaflet/leaflet.markercluster.js
index 92f152511ef..17ba2ada0f9 100644
--- a/themes/bootstrap3/js/vendor/leaflet/leaflet.markercluster.js
+++ b/themes/bootstrap3/js/vendor/leaflet/leaflet.markercluster.js
@@ -1394,7 +1394,7 @@ L.MarkerClusterGroup.include({
//Force a browser layout of stuff in the map
// Should apply the current opacity and location to all elements so we can update them again for an animation
_forceLayout: function () {
- //In my testing this works, infact offsetWidth of any element seems to work.
+ //In my testing this works, in fact offsetWidth of any element seems to work.
//Could loop all this._layers and do this for each _icon if it stops working
L.Util.falseFn(document.body.offsetWidth);
@@ -2518,7 +2518,7 @@ L.MarkerClusterGroup.include({
this._map.getRenderer(this);
//Needs to happen in the pageload, not after, or animations don't work in webkit
// http://stackoverflow.com/questions/8455200/svg-animate-with-dynamically-added-elements
- //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticable
+ //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticeable
}
},
diff --git a/themes/bootstrap5/js/lightbox.js b/themes/bootstrap5/js/lightbox.js
index b86ccd91648..7ffca00cb73 100644
--- a/themes/bootstrap5/js/lightbox.js
+++ b/themes/bootstrap5/js/lightbox.js
@@ -12,7 +12,7 @@ VuFind.register('lightbox', function Lightbox() {
var _modalParams = {};
// Elements
var _modal, _modalBody, _clickedButton = null;
- // Boostrap modal
+ // Bootstrap modal
var _bsModal = null;
// Utilities
function _storeClickedStatus() {
diff --git a/themes/bootstrap5/js/vendor/leaflet/leaflet.markercluster-src.js b/themes/bootstrap5/js/vendor/leaflet/leaflet.markercluster-src.js
index 92f152511ef..17ba2ada0f9 100644
--- a/themes/bootstrap5/js/vendor/leaflet/leaflet.markercluster-src.js
+++ b/themes/bootstrap5/js/vendor/leaflet/leaflet.markercluster-src.js
@@ -1394,7 +1394,7 @@ L.MarkerClusterGroup.include({
//Force a browser layout of stuff in the map
// Should apply the current opacity and location to all elements so we can update them again for an animation
_forceLayout: function () {
- //In my testing this works, infact offsetWidth of any element seems to work.
+ //In my testing this works, in fact offsetWidth of any element seems to work.
//Could loop all this._layers and do this for each _icon if it stops working
L.Util.falseFn(document.body.offsetWidth);
@@ -2518,7 +2518,7 @@ L.MarkerClusterGroup.include({
this._map.getRenderer(this);
//Needs to happen in the pageload, not after, or animations don't work in webkit
// http://stackoverflow.com/questions/8455200/svg-animate-with-dynamically-added-elements
- //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticable
+ //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticeable
}
},
diff --git a/themes/bootstrap5/js/vendor/leaflet/leaflet.markercluster.js b/themes/bootstrap5/js/vendor/leaflet/leaflet.markercluster.js
index 92f152511ef..17ba2ada0f9 100644
--- a/themes/bootstrap5/js/vendor/leaflet/leaflet.markercluster.js
+++ b/themes/bootstrap5/js/vendor/leaflet/leaflet.markercluster.js
@@ -1394,7 +1394,7 @@ L.MarkerClusterGroup.include({
//Force a browser layout of stuff in the map
// Should apply the current opacity and location to all elements so we can update them again for an animation
_forceLayout: function () {
- //In my testing this works, infact offsetWidth of any element seems to work.
+ //In my testing this works, in fact offsetWidth of any element seems to work.
//Could loop all this._layers and do this for each _icon if it stops working
L.Util.falseFn(document.body.offsetWidth);
@@ -2518,7 +2518,7 @@ L.MarkerClusterGroup.include({
this._map.getRenderer(this);
//Needs to happen in the pageload, not after, or animations don't work in webkit
// http://stackoverflow.com/questions/8455200/svg-animate-with-dynamically-added-elements
- //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticable
+ //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticeable
}
},
diff --git a/themes/bsz/templates/bsz/mzbihs/en.phtml b/themes/bsz/templates/bsz/mzbihs/en.phtml
index 7ab5e78dafe..640fdf2e058 100644
--- a/themes/bsz/templates/bsz/mzbihs/en.phtml
+++ b/themes/bsz/templates/bsz/mzbihs/en.phtml
@@ -1,5 +1,5 @@
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO.
+ This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de
diff --git a/themes/bsz/templates/bsz/mzub/en.phtml b/themes/bsz/templates/bsz/mzub/en.phtml
index 7ab5e78dafe..640fdf2e058 100644
--- a/themes/bsz/templates/bsz/mzub/en.phtml
+++ b/themes/bsz/templates/bsz/mzub/en.phtml
@@ -1,5 +1,5 @@
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO.
+ This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de
diff --git a/themes/reichenau/templates/bsz/mzbihs/en.phtml b/themes/reichenau/templates/bsz/mzbihs/en.phtml
index 7a766c0aec8..fbdfe1dbe22 100644
--- a/themes/reichenau/templates/bsz/mzbihs/en.phtml
+++ b/themes/reichenau/templates/bsz/mzbihs/en.phtml
@@ -3,7 +3,7 @@
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO.
+ This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de