From 9f2ca85ed567bbf47d1181253f5ae6a6ed3c7455 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 4 Dec 2013 09:15:15 -0500
Subject: [PATCH] Simplified code.

---
 .../VuFind/src/VuFind/Controller/MyResearchController.php | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/module/VuFind/src/VuFind/Controller/MyResearchController.php b/module/VuFind/src/VuFind/Controller/MyResearchController.php
index c0dcb7d37c4..28edaa96a30 100644
--- a/module/VuFind/src/VuFind/Controller/MyResearchController.php
+++ b/module/VuFind/src/VuFind/Controller/MyResearchController.php
@@ -115,12 +115,10 @@ class MyResearchController extends AbstractBase
         // if the current auth class proxies others, we'll get the proxied
         //   auth method as a querystring or post parameter.
         //   Force to post.
-        $method = trim($this->params()->fromQuery('auth_method'));
-        if ($method) {
-            $this->getRequest()->setPost(
-                $this->getRequest()->getPost()->set('auth_method', $method)
-            );
+        if ($method = trim($this->params()->fromQuery('auth_method'))) {
+            $this->getRequest()->getPost()->set('auth_method', $method);
         }
+
         // Process login request, if necessary (either because a form has been
         // submitted or because we're using an external login provider):
         if ($this->params()->fromPost('processLogin')
-- 
GitLab