This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ git apply --stat ~/Downloads/taxonomy-display-views-url-1783968-26.patch | |
| handlers/associated/views.inc | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) | |
| $ find . -path "*handlers/associated/views.inc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/handlers/associated/views.inc b/handlers/associated/views.inc | |
| index 08c23bf..4d30f65 100644 | |
| --- a/handlers/associated/views.inc | |
| +++ b/handlers/associated/views.inc | |
| @@ -46,7 +46,7 @@ class TaxonomyDisplayAssociatedDisplayHandlerViews extends TaxonomyDisplayAssoci | |
| // Else if the user has access to the view. | |
| elseif ($view->access($options['display'])) { | |
| // Ensure links stay on taxonomy term page. | |
| - $view->override_path = current_path(); | |
| + $view->override_url = current_path(); | |
| // Generate the view's output. | |
| $output = $view->preview($options['display'], array($term->tid)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment