From 52025129841eb4f6981ad560a559e516f8a9952d Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 7 Sep 2012 11:06:53 -0400
Subject: [PATCH] Fixed bug in namespace construction in Search Manager.

---
 module/VuFind/src/VuFind/Search/Manager.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/VuFind/src/VuFind/Search/Manager.php b/module/VuFind/src/VuFind/Search/Manager.php
index 9bce7153e79..462f1de0363 100644
--- a/module/VuFind/src/VuFind/Search/Manager.php
+++ b/module/VuFind/src/VuFind/Search/Manager.php
@@ -87,7 +87,7 @@ class Manager implements ServiceLocatorAwareInterface
         // Use default namespace if we got this far:
         $ns = isset($this->config['default_namespace'])
             ? $this->config['default_namespace'] : 'VuFind\Search';
-        return $ns . '\\' . $this->classId;
+        return $ns . '\\' . $key;
     }
 
     /**
-- 
GitLab