Skip to content

Commit 02fd109

Browse files
author
James Watts
committed
Improved check for domain
1 parent 1f22aa1 commit 02fd109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

View/Factory/Js/Templates/history.ctp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ foreach ($this->_elementActions as $action) {
44
case 'back':
55
$request = $this->getFactory()->getView()->getRequest();
66
$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()') . ';}';
7+
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()') . ';}';
88
break;
99
case 'forward':
1010
echo 'history.forward();';

0 commit comments

Comments
 (0)