From 5912030d612652ecf3a136ceb4aed381831ed411 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Mon, 11 Mar 2013 15:26:41 -0400 Subject: [PATCH] Bug fixes. --- module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php index faad56af6d3..b187b57f151 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php +++ b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php @@ -146,7 +146,7 @@ class MultiBackend extends AbstractBase implements ServiceLocatorAwareInterface $this->delimiters['login'] = (isset($this->config['Delimiters']['login']) ? $this->config['Delimiters']['login'] : - ' '); + "\t"); $this->getDriverConfig($this->defaultDriver); } @@ -566,21 +566,21 @@ class MultiBackend extends AbstractBase implements ServiceLocatorAwareInterface */ public function supportsMethod($method, $params) { - //First we see if we can determine what instance the user is connected with + // First we see if we can determine what instance the user is connected with $instance = $this->getInstanceFromParams($params); if ($instance) { $driverInst = $this->getUninitializedDriver($instance); return is_callable(array($driverInst, $method)); } - //Falling back, we try to use a default driver if it's set + // Falling back, we try to use a default driver if it's set $instance = $this->defaultDriver; if ($instance) { $driverInst = $this->getUninitializedDriver($instance); - return is_callable(array($driver, $method)); + return is_callable(array($driverInst, $method)); } - //Lastly, we see if any of the drivers we have support the function + // Lastly, we see if any of the drivers we have support the function foreach ($this->drivers as $key => $driver) { $driverInst = $this->getUninitializedDriver($key); if (is_callable(array($driverInst, $method))) { -- GitLab