We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f22aa1 commit 02fd109Copy full SHA for 02fd109
View/Factory/Js/Templates/history.ctp
@@ -4,7 +4,7 @@ foreach ($this->_elementActions as $action) {
4
case 'back':
5
$request = $this->getFactory()->getView()->getRequest();
6
$referer = $request->referer(true);
7
- echo (isset($action[1][0]) && isset($action[1][1]) && $action[1][1] && ($referer === '/' || strpos($referer, $request->base) !== 0))? 'location=' . $this->_resolveCode($action[1][0]) . ';' : 'if(history.length>1){history.back();}else{' . ((isset($action[1][0]))? 'location=' . $this->_resolveCode($action[1][0]) : 'history.go()') . ';}';
+ echo (isset($action[1][0]) && isset($action[1][1]) && $action[1][1] && ($referer === '/' || strpos($referer, $request->domain()) !== false))? 'location=' . $this->_resolveCode($action[1][0]) . ';' : 'if(history.length>1){history.back();}else{' . ((isset($action[1][0]))? 'location=' . $this->_resolveCode($action[1][0]) : 'history.go()') . ';}';
8
break;
9
case 'forward':
10
echo 'history.forward();';
0 commit comments