From 8a000a952b914722ee3a56da98c7d839fd7ab4dd Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 16 Dec 2014 15:06:33 -0500 Subject: [PATCH] Smarter redirectToRecord() behavior for bootstrap3 & jquerymobile. --- .../VuFind/src/VuFind/Controller/AbstractRecord.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/Controller/AbstractRecord.php b/module/VuFind/src/VuFind/Controller/AbstractRecord.php index 2b7c4de11a8..d91a8eb3f7a 100644 --- a/module/VuFind/src/VuFind/Controller/AbstractRecord.php +++ b/module/VuFind/src/VuFind/Controller/AbstractRecord.php @@ -537,7 +537,17 @@ class AbstractRecord extends AbstractBase { $details = $this->getRecordRouter() ->getTabRouteDetails($this->loadRecord(), $tab); - $target = $this->url()->fromRoute($details['route'], $details['params']); + $target = $this->getLightboxAwareUrl($details['route'], $details['params']); + + // Special case: don't use anchors in jquerymobile theme, since they + // mess things up! + if (strlen($params) && substr($params, 0, 1) == '#') { + $themeInfo = $this->getServiceLocator()->get('VuFindTheme\ThemeInfo'); + if ($themeInfo->getTheme() == 'jquerymobile') { + $params = ''; + } + } + return $this->redirect()->toUrl($target . $params); } -- GitLab