From 40ef6c84215e31982eec424978c3e384e6e1d72f Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Fri, 13 Jun 2014 11:36:00 -0400 Subject: [PATCH] Fixed bug -- typo in variable. --- module/VuFind/src/VuFind/Search/Factory/EdsBackendFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/Search/Factory/EdsBackendFactory.php b/module/VuFind/src/VuFind/Search/Factory/EdsBackendFactory.php index d76d9a767e7..80937863d05 100644 --- a/module/VuFind/src/VuFind/Search/Factory/EdsBackendFactory.php +++ b/module/VuFind/src/VuFind/Search/Factory/EdsBackendFactory.php @@ -194,7 +194,7 @@ class EdsBackendFactory implements FactoryInterface $accountData['profile'] = $this->edsConfig->EBSCO_Account->profile; } if (isset($this->edsConfig->EBSCO_Account->organization_id)) { - $acountData['orgid'] = $this->edsConfig->EBSCO_Account->organization_id; + $accountData['orgid'] = $this->edsConfig->EBSCO_Account->organization_id; } return $accountData; -- GitLab