From b14f37ef54cd8e3cc9ba4ccf13c1caf117bbf87b Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Fri, 25 Oct 2013 10:49:35 -0400 Subject: [PATCH] Eliminated unused variable. --- module/VuFind/src/VuFind/Db/AdapterFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/Db/AdapterFactory.php b/module/VuFind/src/VuFind/Db/AdapterFactory.php index f37dc46cc6d..9bb15ffbdf6 100644 --- a/module/VuFind/src/VuFind/Db/AdapterFactory.php +++ b/module/VuFind/src/VuFind/Db/AdapterFactory.php @@ -122,7 +122,7 @@ class AdapterFactory $statement = $adapter->createStatement( 'SET search_path TO ' . $this->config->Database->schema ); - $result = $statement->execute(); + $statement->execute(); } return $adapter; -- GitLab